Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/event/test_event_simulation_responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@


class BaseEventSimulationResponsesTest(BaseEventSimulationTester):
__test__ = False

def test_no_start_no_blocks(self) -> None:
self.simulator.run(36000)

Expand Down
2 changes: 2 additions & 0 deletions tests/event/test_event_simulation_scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ class BaseEventSimulationScenariosTest(BaseEventSimulationTester):
console and then copying the output and manipulating it to create instances.
"""

__test__ = False

seed_config = 6946502462188444706

def assert_response_equal(self, responses: list[EventResponse], expected: list[EventResponse]) -> None:
Expand Down
2 changes: 1 addition & 1 deletion tests/p2p/test_sync_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from tests.utils import HAS_ROCKSDB


class BaseRandomSimulatorTestCase(SimulatorTestCase):
class RandomSimulatorTestCase(SimulatorTestCase):
__test__ = True

seed_config = 2
Expand Down
2 changes: 0 additions & 2 deletions tests/simulation/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@


class SimulatorTestCase(unittest.TestCase):
__test__ = False

seed_config: Optional[int] = None

def setUp(self) -> None:
Expand Down