One script to run all tests

This commit is contained in:
Micah Lee 2018-09-27 21:34:39 -07:00
parent 522d8e2d78
commit eaa3a152b0

14
dev_scripts/run_all_tests.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
ROOT="$( dirname $(cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd ))"
# CLI tests
cd $ROOT
pytest tests/
# Local GUI tests
cd $ROOT/tests_gui_local
./run_unit_tests.sh
# Tor GUI tests
cd $ROOT/tests_gui_tor
./run_unit_tests.sh