File: check_py3

package info (click to toggle)
ipy 1%3A1.01-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 268 kB
  • sloc: python: 1,774; makefile: 26; sh: 7
file content (12 lines) | stat: -rwxr-xr-x 213 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -e

unit_test=$(realpath $(dirname "${0}")/../../test/test_IPy.py)

for py in $(py3versions -r 2>/dev/null); do
	cd "$AUTOPKGTEST_TMP"
	echo "Testing with $py:"
	"${py}" "${unit_test}" 2>&1
done