File: python

package info (click to toggle)
appdirs 1.4.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 184 kB
  • sloc: python: 573; makefile: 11; sh: 7
file content (8 lines) | stat: -rwxr-xr-x 156 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/bash
set -e
set -x
SRC="${PWD}"
cd "${AUTOPKGTEST_TMP}"
for py in $(py3versions -vi) ; do
    "python$py" -m unittest discover -s "${SRC}"/test
done