File: python3

package info (click to toggle)
bornagain 23.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 103,948 kB
  • sloc: cpp: 423,131; python: 40,997; javascript: 11,167; awk: 630; sh: 318; ruby: 173; xml: 130; makefile: 51; ansic: 24
file content (11 lines) | stat: -rwxr-xr-x 219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

cp -r Tests/Py "$AUTOPKGTEST_TMP"

for py in $(py3versions -d 2> /dev/null); do
    cd "$AUTOPKGTEST_TMP"/Py
    echo "Testing with $py:"
    for f in $(find . -name *.py); do
        $py $f
    done
done