File: pytest

package info (click to toggle)
qstylizer 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 296 kB
  • sloc: python: 1,325; makefile: 27; sh: 8
file content (12 lines) | stat: -rwxr-xr-x 175 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

set -e

PYS=$(py3versions -s)

cp -a test "$AUTOPKGTEST_TMP"
for py in $PYS; do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py -m pytest test
done