File: python3-importlab

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

set -eu

cp -r tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for python in $(py3versions -s); do
	PYTHONWARNINGS=d $python -m unittest discover -s tests/ -p '*.py' -v 2>&1
done