Skip to content

Commit 9e600a4

Browse files
colliviermartin-mat
authored andcommitted
Skip both 5g and core tags
They are flaky and then skipped until they are fixed. It also removes the following tags which no longer exist: - testsuite-config-lifecycle - testsuite-microservice - testsuite-all - chaos_container_kill - chaos_cpu_hog Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
1 parent f9f963b commit 9e600a4

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/actions.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,16 @@ jobs:
3232
run: |
3333
JSON="{\"include\":["
3434
TEST_ARRAY=$(grep -roP --no-filename 'tags: \K(\[|")(.*)(\]|")' spec/ | tr -d '[],' | tr -s '\n' ' ' | xargs -n1 | sort -u | xargs | sed s/:/_/g)
35-
TEST_ARRAY=("${TEST_ARRAY[@]/testsuite-config-lifecycle/}")
36-
TEST_ARRAY=("${TEST_ARRAY[@]/testsuite-microservice/}")
37-
TEST_ARRAY=("${TEST_ARRAY[@]/testsuite-all/}")
3835
TEST_ARRAY=("${TEST_ARRAY[@]/disk_fill/}")
39-
TEST_ARRAY=("${TEST_ARRAY[@]/chaos_container_kill/}")
40-
TEST_ARRAY=("${TEST_ARRAY[@]/chaos_cpu_hog/}")
4136
TEST_ARRAY=("${TEST_ARRAY[@]/pod_delete/}")
4237
TEST_ARRAY=("${TEST_ARRAY[@]/pod_io_stress/}")
4338
TEST_ARRAY=("${TEST_ARRAY[@]/pod_memory_hog/}")
4439
TEST_ARRAY=("${TEST_ARRAY[@]/pod_network_latency/}")
4540
TEST_ARRAY=("${TEST_ARRAY[@]/zombie/}")
4641
TEST_ARRAY=("${TEST_ARRAY[@]/oran/}")
42+
# Skip both 5g and core tags because they are flaky
43+
TEST_ARRAY=("${TEST_ARRAY[@]/5g/}")
44+
TEST_ARRAY=("${TEST_ARRAY[@]/core/}")
4745
TEST_LIST=$(for i in ${TEST_ARRAY[@]}
4846
do
4947
echo "{\"spec\":\"$i\"}," | tr -d '\n'

0 commit comments

Comments
 (0)