File: unittest

package info (click to toggle)
python-pam 0.4.2-19
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: ansic: 550; python: 48; sh: 7; makefile: 4
file content (10 lines) | stat: -rwxr-xr-x 150 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

pys="$(py3versions -s)"

for py in $pys ; do
	cd "$AUTOPKGTEST_TMP"
	echo "Testing with $py:"
	$py -c "import PAM; print(PAM)"
done