From 76a1568ce19ad06fd15d25c4cc776cf4ed10e16d Mon Sep 17 00:00:00 2001 From: heswithme Date: Mon, 14 Oct 2024 18:08:39 +0200 Subject: [PATCH] test: disable boa caching because does not allow parallel testing --- tests/integration/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 6709f97..59d6ed0 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -4,7 +4,7 @@ import pytest boa.set_etherscan(api_key=os.getenv("ETHERSCAN_API_KEY")) -BOA_CACHE = True +BOA_CACHE = False @pytest.fixture(autouse=True)