File: pytest

package info (click to toggle)
debugpy 1.8.12%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,424 kB
  • sloc: python: 14,451; sh: 184; makefile: 33
file content (16 lines) | stat: -rwxr-xr-x 261 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/bash

set -e

PYS=$(py3versions -s)

cp -a debian/run_tests pytest.ini tests "$AUTOPKGTEST_TMP"
ROOTDIR=$(pwd)

cd "$AUTOPKGTEST_TMP"

for py in $PYS
do
    echo "Testing with $py:"
    ./run_tests $ROOTDIR/debian/get_test_exclusions $py -m pytest
done