File: import-py3

package info (click to toggle)
python-mplexporter 0.0.1%2B20140921-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 220 kB
  • sloc: python: 940; sh: 7; makefile: 3
file content (11 lines) | stat: -rwxr-xr-x 172 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -efu

pys="$(py3versions -rv 2> /dev/null)"

cd "$AUTOPKGTEST_TMP"

for py in $pys; do
	echo "=== python$py ==="
	python$py -c 'import mplexporter' 2>&1
done