File: pytest

package info (click to toggle)
python-untangle 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 236 kB
  • sloc: python: 482; makefile: 149; xml: 74; sh: 9
file content (13 lines) | stat: -rwxr-xr-x 183 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

set -e

PYS=$(py3versions -s)

cp -a tests "$AUTOPKGTEST_TMP"
for py in $PYS
do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py tests/test_untangle.py
done