From 41a34ddd64d2e7501ba46cd2c0123a75b93021e1 Mon Sep 17 00:00:00 2001 From: Charlie Date: Tue, 30 Jan 2024 17:21:07 +0000 Subject: [PATCH] feat: remove perps specific fuzz run --- tests/integration/test_fuzz.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/integration/test_fuzz.py b/tests/integration/test_fuzz.py index 51026cf80..e4587be75 100644 --- a/tests/integration/test_fuzz.py +++ b/tests/integration/test_fuzz.py @@ -11,12 +11,3 @@ def test_fuzz_run(): fuzz._run( steps=100, output=True, output_dir=temp_dir, perp_market_probability=0.0 ) - - -@pytest.mark.integration -def test_fuzz_run_perps(): - # Simply testing that it doesn't error - with tempfile.TemporaryDirectory() as temp_dir: - fuzz._run( - steps=10, output=True, output_dir=temp_dir, perp_market_probability=1.0 - )