File: upstream-tests

package info (click to toggle)
python-macholib 1.16.3%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 520 kB
  • sloc: python: 4,284; makefile: 131; sh: 10
file content (14 lines) | stat: -rwxr-xr-x 215 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 macholib_tests

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