Move tests into their projects.

This commit is contained in:
Andrew Hamilton 2021-11-04 23:04:41 +10:00
parent 2d7ce4a2de
commit b4b237ec1f
81 changed files with 2 additions and 2 deletions

View file

@ -3,8 +3,8 @@
FAILURE=0
CODEBASE_PATH=$(dirname $0)
cd ${CODEBASE_PATH}/tests
for test in *_test.py; do
cd ${CODEBASE_PATH}
for test in {termstr,fill3,eris}/tests/*_test.py; do
echo "Testing $test …"
./${test} 2>&1
FAILURE=$(($FAILURE | $?))