File: python3

package info (click to toggle)
python-idna 3.3-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,944 kB
  • sloc: python: 16,301; sh: 6; makefile: 3
file content (8 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#!/bin/bash
set -e

SRC="$PWD"
cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -vs) ; do
  python$py -m unittest discover -s "${SRC}/tests" ;
done