File: simple-test

package info (click to toggle)
python-ua-parser 0.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: python: 852; makefile: 39; sh: 7
file content (12 lines) | stat: -rwxr-xr-x 196 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e -u -x

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

cp debian/tests/simple_test.py "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"


for py in $pys; do
    PYTHONPATH=. $py simple_test.py
done