File: unittests

package info (click to toggle)
python-pyotp 2.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: python: 712; sh: 8; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e
set -x


cp test.py "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for pyvers in $(py3versions -s) ; do
	$pyvers -m pytest -v test.py ;
done

exit 0