File: pytest

package info (click to toggle)
three-merge 0.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: python: 345; sh: 7; makefile: 2
file content (10 lines) | stat: -rwxr-xr-x 192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

set -e

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