File: upstream-tests

package info (click to toggle)
django-anymail 13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,552 kB
  • sloc: python: 28,882; makefile: 132; javascript: 33; sh: 9
file content (15 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e -u

cp -va ./tests "$AUTOPKGTEST_TMP"/
cp ./runtests.py "$AUTOPKGTEST_TMP"/
cd "$AUTOPKGTEST_TMP"

# Set this variable to skip tests with tag 'live'
export CONTINUOUS_INTEGRATION=1

for py in $(py3versions -s); do
	echo "Running testsuite with $py:"
	$py runtests.py
done