From 896adace0690495481d5e1bcaf507b7129afd7bf Mon Sep 17 00:00:00 2001 From: Marco Primi Date: Fri, 5 Aug 2022 08:56:53 -0700 Subject: [PATCH] [FIXED] Wrong flag in Travis to exclude chaos tests The `js_tests` build target was using the wrong tag to exclude chaos tests. As a result, chaos tests would run as part of the default testing. --- scripts/runTestsOnTravis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runTestsOnTravis.sh b/scripts/runTestsOnTravis.sh index 09d64bc9..2f47119f 100755 --- a/scripts/runTestsOnTravis.sh +++ b/scripts/runTestsOnTravis.sh @@ -35,7 +35,7 @@ elif [ "$1" = "js_tests" ]; then # tests by using the `skip_js_cluster_tests` and `skip_js_super_cluster_tests` # build tags. - go test -race -v -run=TestJetStream ./server -tags=skip_js_cluster_tests,skip_js_super_cluster_tests,skip_js_cluster_chaos_tests -count=1 -vet=off -timeout=30m -failfast + go test -race -v -run=TestJetStream ./server -tags=skip_js_cluster_tests,skip_js_super_cluster_tests,skip_js_chaos_tests -count=1 -vet=off -timeout=30m -failfast elif [ "$1" = "js_cluster_tests" ]; then