File: unittests

package info (click to toggle)
python-pure-sasl 0.5.1%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 164 kB
  • sloc: python: 772; makefile: 34; sh: 8
file content (12 lines) | stat: -rwxr-xr-x 228 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e
set -x

PYTHON3S=$(py3versions -vr 2>/dev/null)

for i in ${PYTHON3S} ; do \
	PYMAJOR=`echo $i | cut -d'.' -f1` ; \
	echo "===> Testing with python$i (python$PYMAJOR)" ; \
	python$i -m pytest -v tests ; \
done