Skip to content

Commit ee393a1

Browse files
nejchJohnVillalovos
authored andcommitted
test(registry): disable functional tests for unavailable endpoints
1 parent c307dd2 commit ee393a1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/functional/api/test_registry.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ def protected_registry_feature(gl: Gitlab):
99
gl.features.set(name="container_registry_protected_containers", value=True)
1010

1111

12-
def test_list_project_protected_registries(project: Project):
12+
@pytest.mark.skip(reason="Not released yet")
13+
def test_project_protected_registry(project: Project):
1314
rules = project.registry_protection_rules.list()
1415
assert isinstance(rules, list)
1516

16-
17-
@pytest.mark.skip(reason="Not released yet")
18-
def test_create_project_protected_registry(project: Project):
1917
protected_registry = project.registry_protection_rules.create(
2018
{
2119
"repository_path_pattern": "test/image",

0 commit comments

Comments
 (0)