File: python3-testsuite

package info (click to toggle)
python-memprof 0.3.6-5.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 252 kB
  • sloc: python: 345; sh: 7; makefile: 4
file content (10 lines) | stat: -rwxr-xr-x 191 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e
cp -r examples testsuite "$AUTOPKGTEST_TMP/"
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
	echo "Testing with $py:"
	$py -m unittest discover -v -s testsuite
done