File: python3-roman

package info (click to toggle)
python-roman 3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 128 kB
  • sloc: python: 326; sh: 7; makefile: 6
file content (10 lines) | stat: -rwxr-xr-x 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e -u
cp src/tests.py "$AUTOPKGTEST_TMP/"
cd "$AUTOPKGTEST_TMP/"
py3versions -s \
| tr ' ' '\n' \
| xargs -I {} env PYTHONWARNINGS=d {} \
  ./tests.py --verbose 2>&1

# vim:ts=4 sw=4 et