Initial commit

This commit is contained in:
Andrew Hamilton 2015-12-14 18:03:11 +00:00
parent 23e2f8e676
commit fc4b2ced58
25 changed files with 4130 additions and 0 deletions

8
test-all Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
for test in *_test.py; do
echo "Testing $test ..."
./${test} 2>&1
echo
done