Skip to content

Commit

Permalink
Fix compute periodic by excluding some sig-storage tests
Browse files Browse the repository at this point in the history
The periodic is broken for a while since kubevirt#13109 merged;
I think we're happy if these only run in the sig-storage lane.
This looks like it was anyway the intention in one of the commits:
kubevirt@2688996

Another option is introducing logic to filter based on the existence of block
storage which I think we can avoid for now.

Signed-off-by: Alex Kalenyuk <[email protected]>
  • Loading branch information
akalenyu committed Jan 29, 2025
1 parent 22c9188 commit 709ddb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automation/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ if [[ -z ${KUBEVIRT_E2E_FOCUS} && -z ${KUBEVIRT_E2E_SKIP} && -z ${label_filter}
elif [[ $TARGET =~ sig-compute-conformance ]]; then
label_filter='(sig-compute && conformance)'
elif [[ $TARGET =~ sig-compute ]]; then
label_filter='(sig-compute && !(GPU,VGPU,sig-compute-migrations) && !(software-emulation, SEV, SEVES))'
label_filter='(sig-compute && !(GPU,VGPU,sig-compute-migrations,sig-storage) && !(software-emulation, SEV, SEVES))'
elif [[ $TARGET =~ sig-monitoring ]]; then
label_filter='(sig-monitoring)'
elif [[ $TARGET =~ sig-operator ]]; then
Expand Down

0 comments on commit 709ddb1

Please sign in to comment.