Is there any way to use multiple prefect.toml file...
# ask-community
p
Is there any way to use multiple prefect.toml files? I'd like to use different settings for deployment, development and testing. currently if I set e.g. a
default_result_store
in prefect.toml it gets used during the testing with
prefect_test_harness()
and I'm getting block not found errors. Alternatively, how can I ensure clean default settings across the board along with prefect_test_harmess fixture?
Copy code
@pytest.fixture(autouse=True, scope="session")
def prefect_test_fixture():
    with prefect_test_harness():
        yield