File: run-tests

package info (click to toggle)
python-caldav 1.3.9-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 636 kB
  • sloc: python: 6,824; makefile: 91; sh: 7
file content (9 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/bash
set -e

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