File: python3-pytest-datadir

package info (click to toggle)
pytest-datadir 1.4.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 176 kB
  • sloc: python: 144; makefile: 8; sh: 6
file content (9 lines) | stat: -rwxr-xr-x 178 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

cp -a tests "${AUTOPKGTEST_TMP}"
cd "${AUTOPKGTEST_TMP}"

for py in $(py3versions -s); do
    echo "[*] testing on $py:"; $py -Wd -m pytest -v -x -s 2>&1;
done