Don't run gc_setup during tests

This commit is contained in:
Matthias 2022-12-13 17:14:11 +00:00
parent e6da646e2f
commit c042d0146e
1 changed files with 5 additions and 0 deletions

View File

@ -408,6 +408,11 @@ def create_mock_trades_usdt(fee, is_short: Optional[bool] = False, use_db: bool
Trade.commit()
@pytest.fixture(autouse=True)
def patch_gc(mocker) -> None:
mocker.patch("freqtrade.main.gc_set_threshold")
@pytest.fixture(autouse=True)
def patch_coingekko(mocker) -> None:
"""