File: python3

package info (click to toggle)
python-setoptconf 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 224 kB
  • sloc: python: 1,427; sh: 7; makefile: 5
file content (11 lines) | stat: -rwxr-xr-x 175 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

set -e

cp -rv "test/" "${AUTOPKGTEST_TMP}"
cd "${AUTOPKGTEST_TMP}"

for py in $(py3versions --supported); do
    echo "[*] testing $py:"
    $py -m pytest
done