Eos/test.sh

7 lines
116 B
Bash
Raw Normal View History

2017-09-22 16:57:40 +10:00
#!/bin/bash
ARGS=-vvv
for test in eos.core.tests eos.base.tests; do
python -m unittest $test $ARGS || exit 1
done