Skip to content

Commit 96e825c

Browse files
Update conftest.py
1 parent c7ae868 commit 96e825c

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

tests/conftest.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,21 @@ def app_module(tmp_path_factory):
2020
'key': 'pp_test_suite_key',
2121
'name': 'ci-suite',
2222
'client_label': 'ci-suite',
23+
'tenant_id': 'tenant-ci',
24+
'environment': 'live',
25+
'role': 'client',
26+
'plan': 'pilot',
27+
'scopes': ['preflight', 'recovery', 'records'],
28+
'webhook_active': False,
29+
},
30+
{
31+
'key': 'pp_test_suite_key_test',
32+
'name': 'ci-suite test',
33+
'client_label': 'ci-suite-test',
34+
'tenant_id': 'tenant-ci',
35+
'environment': 'test',
36+
'role': 'viewer',
37+
'plan': 'pilot',
2338
'scopes': ['preflight', 'recovery', 'records'],
2439
'webhook_active': False,
2540
}
@@ -52,3 +67,8 @@ def client(app_module):
5267
@pytest.fixture()
5368
def api_headers():
5469
return {'X-API-Key': 'pp_test_suite_key'}
70+
71+
72+
@pytest.fixture()
73+
def api_headers_test():
74+
return {'X-API-Key': 'pp_test_suite_key_test'}

0 commit comments

Comments
 (0)