We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 790261c commit 4f1299dCopy full SHA for 4f1299d
tests/integration/test_project.py
@@ -1,4 +1,5 @@
1
import json
2
+import re
3
4
import pytest
5
import requests
@@ -43,6 +44,10 @@ def test_project(client, rand_gen):
43
44
assert set(final) == set(before)
45
46
47
+@pytest.mark.skip(
48
+ reason="this will fail if run multiple times, limit is defaulted to 3 per org"
49
+ "add this back in when either all test orgs have unlimited, or we delete all tags befoer running"
50
+)
51
def test_update_project_resource_tags(client, rand_gen):
52
before = list(client.get_projects())
53
for o in before:
0 commit comments