summaryrefslogtreecommitdiffstats
path: root/ci/ci_run_all_sm_tests.sh
diff options
context:
space:
mode:
authorRina Fujino <18257209+rina23q@users.noreply.github.com>2021-10-04 12:59:39 +0200
committerGitHub <noreply@github.com>2021-10-04 12:59:39 +0200
commita5a48b73b0c975052ebdfdc0aae95e4eea9256c6 (patch)
tree4cd1a31553adf656045521cb611ff06cc5f1f974 /ci/ci_run_all_sm_tests.sh
parent1b094ad73a6c81503d189ff0fcc6998e89009b79 (diff)
Revert "Run all tests on commit (experimental) (#462)" (#464)
Diffstat (limited to 'ci/ci_run_all_sm_tests.sh')
-rwxr-xr-xci/ci_run_all_sm_tests.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/ci/ci_run_all_sm_tests.sh b/ci/ci_run_all_sm_tests.sh
deleted file mode 100755
index dcd7092b..00000000
--- a/ci/ci_run_all_sm_tests.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/bash
-
-# Run all available system-tests.
-# Note: Needs a bash shell to run
-#
-# Expected environment variables to be set:
-# C8YPASS : Cumulocity password
-# C8YUSERNAME : Cumolocity username
-# C8YTENANT : Cumolocity tenant
-# C8YDEVICE : The device name
-# C8YDEVICEID : The device ID in Cumolocity
-# TIMEZONE : Your timezone (temporary)
-# TEBASEDIR : Base directory for the Thin-Edge repo
-# EXAMPLEDIR : The direcory of the sawtooth example
-# C8YURL : e.g. https://thin-edge-io.eu-latest.cumulocity.com
-
-
-
-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 'sm-apt-*' -XmyPlatform='specialcontainer'
-deactivate