File: run-all-test-regex

package info (click to toggle)
python-regex 0.1.20241106-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,648 kB
  • sloc: ansic: 49,917; python: 8,677; makefile: 15; sh: 7
file content (11 lines) | stat: -rwxr-xr-x 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

cwd="$(pwd)"
dtests="$cwd/debian/tests"

for py in $(py3versions -s | tr ' ' "\n" | sort -V); do
	printf '\n\n\n===== %s\n\n\n' "$py"
	env PYTHONPATH="$dtests/python" python3 -B -u -m temptest -v --srcdir "$cwd"
done