diff --git a/runtests.sh b/runtests.sh index 60f058e..3ae7ddb 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,11 +1,11 @@ #!/bin/sh echo "testing with $(python2 -V 2>&1)" -python2 $(which nosetests) --rednose -v --with-coverage --cover-erase tests/ +python2 $(which nosetests) -v --with-coverage --cover-erase tests/ if [ $? == 0 ]; then echo echo "testing with $(python3 -V 2>&1)" - python3 $(which nosetests-3) --rednose -v --with-coverage --cover-erase tests/ + python3 $(which nosetests) -v --with-coverage --cover-erase tests/ fi