Move tests into their projects.
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 108 B After Width: | Height: | Size: 108 B |
|
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 381 B |
|
Before Width: | Height: | Size: 320 B After Width: | Height: | Size: 320 B |
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
4
test-all
|
|
@ -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 | $?))
|
||||
|
|
|
|||