try overriding pytest.ini variables

This commit is contained in:
Kenneth Kehl
2024-04-29 10:42:31 -07:00
parent 32f1bb4f87
commit e50b4bb5f7
3 changed files with 23 additions and 12 deletions

View File

@@ -88,6 +88,9 @@ def end_to_end_context(browser):
context = browser.new_context()
return context
def pytest_generate_tests(metafunc):
os.environ['DANGEROUS_SALT'] = 'blahblahdiddiblah'
@pytest.fixture()
def authenticated_page(end_to_end_context):