File: run-tests

package info (click to toggle)
zict 3.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 324 kB
  • sloc: python: 3,074; sh: 8; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 203 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
set -e

cp setup.cfg "$AUTOPKGTEST_TMP"

for py in $(py3versions --supported 2>/dev/null)
do
  cd "$AUTOPKGTEST_TMP"
  echo "Testing with $py:"
  http_proxy= $py -m pytest --pyargs zict
done