File: python3

package info (click to toggle)
python-mpd 3.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 476 kB
  • sloc: python: 3,021; makefile: 187; sh: 9
file content (13 lines) | stat: -rwxr-xr-x 232 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
exec 2>&1
set -eux
install mpd/tests.py "$AUTOPKGTEST_TMP/mpd_test.py"
cd "$AUTOPKGTEST_TMP"

failed=0

for python in $(py3versions -s) python3; do
    "$python" -u -m unittest -v mpd_test || failed=1
done

exit "$failed"