File: upstream-tests

package info (click to toggle)
jaraco.classes 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 164 kB
  • sloc: python: 187; sh: 7; makefile: 3
file content (12 lines) | stat: -rwxr-xr-x 236 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e -u

DIR="/usr/lib/python3/dist-packages/jaraco/classes/"

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s 2>/dev/null); do
       echo "Running testsuite with $py:"
       $py -m pytest --doctest-modules "$DIR"
done