From 93df4dab0330343d641bcd3802e3c80041f72b00 Mon Sep 17 00:00:00 2001 From: Haris Angelidakis <64154020+harisang@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:04:42 +0300 Subject: [PATCH] Disable more tests (#117) It was observed that the daemon has become very slow and not working as expected. For that, this PR proposes to disable the CombinatorialAuctionSurplusTest and the UniformDirectedPricesTest, as both are non-actionable, and with the hope that the daemon will start working again as expected. --- src/daemon.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/daemon.py b/src/daemon.py index 715cdfa..ec3bd6b 100644 --- a/src/daemon.py +++ b/src/daemon.py @@ -16,12 +16,6 @@ from src.monitoring_tests.mev_blocker_kickbacks_test import ( MEVBlockerRefundsMonitoringTest, ) -from src.monitoring_tests.combinatorial_auction_surplus_test import ( - CombinatorialAuctionSurplusTest, -) -from src.monitoring_tests.uniform_directed_prices_test import ( - UniformDirectedPricesTest, -) from src.constants import SLEEP_TIME_IN_SEC @@ -35,8 +29,6 @@ def main() -> None: tests = [ SolverCompetitionSurplusTest(), MEVBlockerRefundsMonitoringTest(), - CombinatorialAuctionSurplusTest(), - UniformDirectedPricesTest(), ] start_block: Optional[int] = None