From c7608f4bf2a5302009c603d56b64ae53e3fcd66e Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Fri, 29 Dec 2017 14:52:07 +0100 Subject: [PATCH] [tests] Update runtests for Arch Linux compatibility --- runtests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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