From fd281ad822fd2101e260c11676a9d049c4a93572 Mon Sep 17 00:00:00 2001 From: poka Date: Fri, 9 Sep 2022 01:39:11 +0200 Subject: [PATCH] add script to launch all tests --- integration_test/launch_all_tests.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 integration_test/launch_all_tests.sh diff --git a/integration_test/launch_all_tests.sh b/integration_test/launch_all_tests.sh new file mode 100755 index 0000000..09355b9 --- /dev/null +++ b/integration_test/launch_all_tests.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +for test_file in $(ls integration_test/scenarios/); do + testName=$(echo $test_file | awk -F '.' '{print $1}') + ./integration_test/launch_test.sh $testName || break +done \ No newline at end of file