File: run-tests

package info (click to toggle)
annexremote 1.6.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 400 kB
  • sloc: python: 1,637; sh: 24; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 199 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -efu

cp -a tests $AUTOPKGTEST_TMP

cd ${AUTOPKGTEST_TMP}

for py in `py3versions -s`; do
    printf '=-=-=-=-=-= Running tests for %s =-=-=-=-=-=\n' "$py"
    $py -m pytest tests
done