summaryrefslogtreecommitdiffstats
path: root/ci/ci_run_all_tests.sh
diff options
context:
space:
mode:
authorMichael Abel <75477722+abelikt@users.noreply.github.com>2021-04-14 14:40:24 +0200
committerGitHub <noreply@github.com>2021-04-14 14:40:24 +0200
commit60d796e85d8feb95eaf732a71a6a72c148551d87 (patch)
tree8f84cb6a33f4acb3fa107e24ffddd06d55fca16c /ci/ci_run_all_tests.sh
parent3c4d8a07102281d140b0fba22f761dd5dbc5ed8f (diff)
[CIT-279] Add simple system tests (#166)
* Add disconnect again - got lost while resolving conflicts * Add basic system tests - Add tests that derive from BaseTest - Upload test folder for later analysis - Avoid DEBUG flag and some other settings Signed-off-by: Michael Abel <info@abel-ikt.de> * Run black to format code Signed-off-by: Michael Abel <info@abel-ikt.de> * Work on review comments
Diffstat (limited to 'ci/ci_run_all_tests.sh')
-rwxr-xr-xci/ci_run_all_tests.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/ci_run_all_tests.sh b/ci/ci_run_all_tests.sh
index c06dd62d..22dfb1b2 100755
--- a/ci/ci_run_all_tests.sh
+++ b/ci/ci_run_all_tests.sh
@@ -17,11 +17,14 @@ set -e
cd $TEBASEDIR
+# Check if clients are installed
+dpkg -s mosquitto-clients
+
# Run all PySys tests
python3 -m venv ~/env-pysys
source ~/env-pysys/bin/activate
pip3 install -r tests/requirements.txt
cd tests/PySys/
-pysys.py run -v DEBUG
+pysys.py run
deactivate