File: run-tests

package info (click to toggle)
pyprojroot 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: python: 181; makefile: 9; sh: 5
file content (6 lines) | stat: -rwxr-xr-x 166 bytes parent folder | download
1
2
3
4
5
6
#!/bin/sh
set -e
cp -r test* "$AUTOPKGTEST_TMP/" && cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -s); do
    $py -Wd -m pytest -v -x -k "not test_version" 2>&1
done