File: unittests3

package info (click to toggle)
objgraph 3.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,224 kB
  • sloc: python: 1,188; makefile: 108; sh: 8
file content (12 lines) | stat: -rwxr-xr-x 203 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -efu

pythons="$(py3versions -s 2> /dev/null)"

cp -a docs tests.py "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for python in $pythons; do
	echo "=== $python ==="
	$python tests.py 2>&1
done