9 lines
154 B
Python
Executable File
9 lines
154 B
Python
Executable File
#!/usr/bin/bash
|
|
|
|
set -e
|
|
source /home/geoffrey/venv/forensic/bin/activate;
|
|
for test in `ls tests/test_*.py`; do
|
|
echo $test;
|
|
python3 $test -v;
|
|
done
|