File: run-tests

package info (click to toggle)
locket 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: python: 449; makefile: 30; sh: 8
file content (10 lines) | stat: -rwxr-xr-x 234 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash 
set -e

cp -rv tests "$AUTOPKGTEST_TMP"
ls "$AUTOPKGTEST_TMP"
for py in $(py3versions --supported 2>/dev/null)
do cd "$AUTOPKGTEST_TMP"
  echo "Testing with $py:"
  http_proxy= $py -m pytest -v tests/locket_tests.py
done