File: upstream.sh

package info (click to toggle)
python-pyspike 0.8.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,012 kB
  • sloc: python: 3,492; makefile: 149; sh: 19
file content (13 lines) | stat: -rwxr-xr-x 230 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -e
set -u

cp -R $PWD/test $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP

for py3ver in $(py3versions -vs)
do
    echo "Running upstream tests with Python ${py3ver}."
    /usr/bin/python${py3ver} -B -m pytest -v test
done