File: unittest

package info (click to toggle)
python-discogs-client 2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 524 kB
  • sloc: python: 1,614; sh: 83; makefile: 18
file content (12 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -efu

pys="$(py3versions -s 2> /dev/null)"

cp -a discogs_client/tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $pys; do
    echo "=== $py ==="
    $py -m unittest discover 2>&1
done