File: upstream

package info (click to toggle)
pytest-watcher 0.4.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 856 kB
  • sloc: python: 925; makefile: 28; sh: 13
file content (19 lines) | stat: -rw-r--r-- 297 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e

cp -a tests ${AUTOPKGTEST_TMP}

cd ${AUTOPKGTEST_TMP}

for p in $(py3versions -s); do
    echo
    echo "**************************"
    echo "*** Testing with ${p}"
    echo "**************************"
    echo
    $p -m pytest -sv tests
    rm -rf .pytest_cache
done

exit 0