File: py3

package info (click to toggle)
python-jellyfish 0.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 708 kB
  • sloc: ansic: 1,364; python: 916; makefile: 157; sh: 7
file content (10 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

set -e

cp -r testdata "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -r 2>/dev/null) ; do
    echo "Testing with $py:"
    $py -m pytest --pyargs jellyfish.test
done