File: upstream

package info (click to toggle)
sqlfluff 3.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,984 kB
  • sloc: python: 106,138; sql: 34,188; makefile: 52; sh: 8
file content (16 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -ex

cp -a -t $AUTOPKGTEST_TMP test pyproject.toml README.md plugins

cd ${AUTOPKGTEST_TMP}

# requires that the example plugin be installed (eg. using tox)
rm test/core/plugin_test.py

for py in `py3versions -s`; do
    printf '=-=-=-=-=-= Running tests for %s =-=-=-=-=-=\n' "$py"
    $py -m pytest -k "not appdir" test
done

# vim: set ts=4 sw=4 et si: