File: unittests

package info (click to toggle)
python-wsgi-intercept 1.13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 560 kB
  • sloc: python: 1,390; makefile: 56; sh: 5
file content (8 lines) | stat: -rw-r--r-- 213 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/sh

set -e

for i in $(py3versions -sv) ; do \
	echo "===> Testing with python$i" ; \
	WSGI_INTERCEPT_SKIP_NETWORK=true PYTHON=$i PYTHONPATH=. python$i -m pytest -v -n `nproc` wsgi_intercept/tests ; \
done