One script to run all tests

This commit is contained in:
Micah Lee 2018-09-27 21:34:39 -07:00
parent aa7919abfd
commit 2ffcdbb108
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

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