File: unittests

package info (click to toggle)
python-croniter 6.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 408 kB
  • sloc: python: 3,912; makefile: 20; sh: 19
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