File: pytest

package info (click to toggle)
abydos 0.5.0%2Bgit20201231.344346a-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 90,736 kB
  • sloc: python: 75,614; makefile: 224; sh: 7
file content (10 lines) | stat: -rwxr-xr-x 188 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

set -e

cp -a tests "$AUTOPKGTEST_TMP"
for py in $(py3versions -r 2>/dev/null) ; do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py -m unittest discover -v
done