File: upstream-tests

package info (click to toggle)
python-altgraph 0.17.4%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 372 kB
  • sloc: python: 2,561; makefile: 92; sh: 10
file content (14 lines) | stat: -rwxr-xr-x 264 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

cd altgraph_tests

for test in test*.py; do
        echo "--------------------- ${test} -------------------"
        if [ ! -e "${test}" ]; then
                echo "SKIPPING ${test}"
                continue
        fi
	python3 "${test}"
done