File: python

package info (click to toggle)
binoculars 0.0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 616 kB
  • sloc: python: 8,647; makefile: 157; sh: 44
file content (9 lines) | stat: -rwxr-xr-x 193 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/sh -e

cp -r tests examples "$AUTOPKGTEST_TMP"

for py in $(py3versions -r 2>/dev/null)
do cd "$AUTOPKGTEST_TMP"
   echo "Testing with $py:"
   $py -m unittest discover -s tests -v
done