File: pytest

package info (click to toggle)
rapidfuzz 3.12.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,436 kB
  • sloc: python: 7,571; cpp: 7,481; sh: 30; makefile: 23
file content (12 lines) | stat: -rwxr-xr-x 173 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

set -e

PYS=$(py3versions -s)

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