File: check

package info (click to toggle)
python-igraph 0.11.8%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,480 kB
  • sloc: ansic: 24,545; python: 21,699; sh: 107; makefile: 35; sed: 2
file content (12 lines) | stat: -rwxr-xr-x 166 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -ue

cp -prd tests "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"

for py in $(py3versions -vs); do
	python$py -m unittest discover -v -s .
done

exit 0