We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ab7be5 commit 7575a9cCopy full SHA for 7575a9c
test/dlc_tests/conftest.py
@@ -1799,6 +1799,13 @@ def lookup_condition(lookup, image):
1799
def pytest_generate_tests(metafunc):
1800
images = metafunc.config.getoption("--images")
1801
1802
+ # Check for public registry canary first
1803
+ if os.getenv("IS_PUBLIC_REGISTRY_CANARY", "false").lower() == "true":
1804
+ # Only handle framework agnostic tests for public registry
1805
+ if "image" in metafunc.fixturenames:
1806
+ metafunc.parametrize("image", images)
1807
+ return
1808
+
1809
# Parametrize framework specific tests
1810
for fixture in FRAMEWORK_FIXTURES:
1811
if fixture in metafunc.fixturenames:
0 commit comments