File: pytest

package info (click to toggle)
py-stringmatching 0.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,956 kB
  • sloc: python: 3,979; makefile: 174; sh: 7
file content (10 lines) | stat: -rwxr-xr-x 194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

set -e

cp -a py_stringmatching/tests "$AUTOPKGTEST_TMP"
for py in $(py3versions -s) ; do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py -m unittest discover -v
done