work on tests and various fixes

This commit is contained in:
Kevin Froman 2019-02-14 17:52:08 -06:00
parent 3357f93fc1
commit 398d8da347
1 changed files with 7 additions and 0 deletions

7
run_tests.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
cd onionr;
mkdir testdata;
for f in tests/*.py; do
python3 "$f" || break # if needed
done
rm -rf testdata;