@@ -40,29 +40,29 @@ def count_invoice(api, account):
4040 return len (api .invoices .list_by_account (account ))
4141
4242
43- def test_trigger_billing (master_api , custom_tenant , paid_account , next_day ):
44- api = custom_tenant .admin_api (wait = True )
43+ def test_trigger_billing (master_api , custom_tenant , paid_account , next_day , ssl_verify ):
44+ api = custom_tenant .admin_api (ssl_verify = ssl_verify , wait = True )
4545 account = paid_account (api )
4646 assert master_api .tenants .trigger_billing (custom_tenant , next_day )
4747 assert count_invoice (api , account ) == 1
4848
4949
50- def test_trigger_billing_resource (custom_tenant , paid_account , next_day ):
51- api = custom_tenant .admin_api (wait = True )
50+ def test_trigger_billing_resource (custom_tenant , paid_account , next_day , ssl_verify ):
51+ api = custom_tenant .admin_api (ssl_verify = ssl_verify , wait = True )
5252 account = paid_account (api )
5353 assert custom_tenant .trigger_billing (next_day )
5454 assert count_invoice (api , account ) == 1
5555
5656
57- def test_trigger_billing_account (master_api , custom_tenant , paid_account , next_day ):
58- api = custom_tenant .admin_api (wait = True )
57+ def test_trigger_billing_account (master_api , custom_tenant , paid_account , next_day , ssl_verify ):
58+ api = custom_tenant .admin_api (ssl_verify = ssl_verify , wait = True )
5959 account = paid_account (api )
6060 assert master_api .tenants .trigger_billing_account (custom_tenant , account , next_day )
6161 assert count_invoice (api , account ) == 1
6262
6363
64- def test_trigger_billing_account_resource (custom_tenant , paid_account , next_day ):
65- api = custom_tenant .admin_api (wait = True )
64+ def test_trigger_billing_account_resource (custom_tenant , paid_account , next_day , ssl_verify ):
65+ api = custom_tenant .admin_api (ssl_verify = ssl_verify , wait = True )
6666 account = paid_account (api )
6767 assert custom_tenant .trigger_billing_account (account , next_day )
6868 assert count_invoice (api , account ) == 1
0 commit comments