diff options
-rwxr-xr-x | test.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test.sh b/test.sh new file mode 100755 index 000000000..0e197faf5 --- /dev/null +++ b/test.sh @@ -0,0 +1,25 @@ +#!/bin/bash +set -ex + +CMD="sudo python3 -m tox -- --integration -vv" + +TD="tests" +F="${TD}/frontend" +W="${F}/workspace.py::" +P="${F}/push.py::" +S="${F}/show.py::" +I="${TD}/integration" +IW="${I}/workspace.py::" +IS="${I}/shell.py::" + +TESTS=( +"${W}test_build" +"${W}test_detect_modifications" +"${W}test_cache_key_workspace_in_dependencies" +"${W}test_close_removed" +"${W}test_inconsitent_pipeline_message" +) + +for T in "${TESTS[@]}"; do + $CMD "${T}" +done |