File: unittests

package info (click to toggle)
python-croniter 2.0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 336 kB
  • sloc: python: 3,122; makefile: 20; sh: 14
file content (10 lines) | stat: -rwxr-xr-x 150 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e
set -x

CWD=$(pwd)
PYTHON3S=$(py3versions -vs)
for i in ${PYTHON3S} ; do
	PYTHONPATH=. PYTHON=python$i python$i -m pytest -v .
done