File: test

package info (click to toggle)
aiodogstatsd 0.16.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 296 kB
  • sloc: python: 1,080; makefile: 70; sh: 19
file content (13 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
exec 2>&1
set -eux
install debian/tests/python3-aiodogstatsd.py "$AUTOPKGTEST_TMP/python3-aiodogstatsd.py"
cd "$AUTOPKGTEST_TMP"

failed=0

for python in $(py3versions -s); do
    "$python" ./python3-aiodogstatsd.py || failed=1
done

exit "$failed"