File: loop-tests-python

package info (click to toggle)
domdf-python-tools 3.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: python: 10,838; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 237 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
 #!/bin/sh

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

cp -a tests "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for v in $py_version; do
	echo "=== $v ==="
	$v -m pytest -v  tests/test_secrets.py tests/test_pagesizes/test_units.py 
done