File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ()
5368def 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' }
You can’t perform that action at this time.
0 commit comments