872c2047e5
* and make runtests.sh dash-compatible for debian-like OS
11 lines
260 B
Bash
Executable file
11 lines
260 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "testing with $(python2 -V 2>&1)"
|
|
python2 $(which nosetests) -v --with-coverage --cover-erase tests/
|
|
|
|
if test $? -eq 0 ; then
|
|
echo
|
|
|
|
echo "testing with $(python3 -V 2>&1)"
|
|
python3 $(which nosetests) -v --with-coverage --cover-erase tests/
|
|
fi
|