Fix openshift/network/third-party suite returning 0 tests.#31007
Fix openshift/network/third-party suite returning 0 tests.#31007maheshkurund wants to merge 1 commit intoopenshift:mainfrom
Conversation
…igration The suite qualifier references [Suite:k8s] which is no longer appended to test names after the migration to the OpenShift Tests Extension (OTE) framework. The k8s-tests-ext binary does not add [Suite:k8s] to test names, causing the qualifier to match zero tests and breaking CNI certification workflows. Remove the stale [Suite:k8s] requirement from the qualifier so that sig-network conformance and NetworkPolicy tests are correctly selected regardless of which binary provides them.
|
Pipeline controller notification For optional jobs, comment This repository is configured in: automatic mode |
|
Hi @maheshkurund. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository: openshift/coderabbit/.coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
WalkthroughThe Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 10✅ Passed checks (10 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: maheshkurund The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Description
The suite qualifier references [Suite:k8s] which is no longer appended to test names after the migration to the OpenShift Tests Extension (OTE) framework. The k8s-tests-ext binary does not add [Suite:k8s] to test names, causing the qualifier to match zero tests and breaking CNI certification workflows.
What
Remove stale
[Suite:k8s]qualifier from theopenshift/network/third-partysuite definition that causes 0 tests to be selected after the OTE migration.Why
After the OTE migration, Kubernetes tests are provided by the
k8s-tests-extbinary which does not append[Suite:k8s]to test names. The qualifiername.contains("[Suite:k8s]")matches zero tests, makingopenshift-tests run openshift/network/third-partyreturn "no tests to run".This breaks the CNI certification workflow documented at Red Hat CNI Certification §34.6.
Evidence
Fix
Remove the stale [Suite:k8s] requirement from the qualifier so that sig-network conformance and NetworkPolicy tests are correctly selected regardless of which binary provides them.
Summary by CodeRabbit