File: upstream

package info (click to toggle)
torf 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 988 kB
  • sloc: python: 10,054; makefile: 15; sh: 8
file content (13 lines) | stat: -rwxr-xr-x 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

cp -r tests ${AUTOPKGTEST_TMP}
cp pytest.ini ${AUTOPKGTEST_TMP}

cd ${AUTOPKGTEST_TMP}

for py in $(py3versions -s); do
    echo "Testing with $py"
    $py -m pytest -v tests/
done