File: upstream

package info (click to toggle)
sphinx-autoapi 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,024 kB
  • sloc: python: 4,862; makefile: 164; javascript: 16; sh: 8
file content (11 lines) | stat: -rwxr-xr-x 190 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -efu

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

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