File: run-demos

package info (click to toggle)
python-colorama 0.4.6-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: python: 1,428; sh: 49; makefile: 41
file content (13 lines) | stat: -rwxr-xr-x 223 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -eu

cp -a colorama demos "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py3vers in $(py3versions -s); do
	echo "=== ${py3vers} ==="
	for d in demos/*.py; do
		PYTHONPATH=. "${py3vers}" "${d}" 2>&1
	done
done