File: import

package info (click to toggle)
pyqt5-sip 12.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 648 kB
  • sloc: ansic: 12,157; python: 11; sh: 8; makefile: 3
file content (12 lines) | stat: -rwxr-xr-x 207 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

cd $AUTOPKGTEST_TMP

for py in $(py3versions -s); do
  echo "testing $py"
  $py -c "from PyQt5.sip import _C_API"
  echo "testing $py-dbg"
  $py-dbg -c "from PyQt5.sip import _C_API"
done