We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8116770 + 0582f84 commit 2f25b0fCopy full SHA for 2f25b0f
testsuite/tests/singlecluster/reconciliation/conftest.py
@@ -3,6 +3,13 @@
3
import pytest
4
5
6
+@pytest.fixture(scope="module")
7
+def authorization(authorization):
8
+ """Add anonymous identity. This is needed as we can't create authorization without any rule"""
9
+ authorization.identity.add_anonymous("anonymous")
10
+ return authorization
11
+
12
13
@pytest.fixture(scope="module", autouse=True)
14
def commit(request, authorization):
15
"""Only commit authorization"""
0 commit comments