blob: 451e377cfc0eeb90ecc36022886ff10c7cf14678 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import os
import pytest
@pytest.mark.tryfirst
def pytest_configure(config):
if "ALLURE_REPORT_DIR" in os.environ:
config.option.allurereportdir = os.environ["ALLURE_REPORT_DIR"]
|