diff --git a/carball/tests/stats/demo_test.py b/carball/tests/stats/demo_test.py index 66f51f9a..3923082f 100644 --- a/carball/tests/stats/demo_test.py +++ b/carball/tests/stats/demo_test.py @@ -4,7 +4,7 @@ class Test_Demos: - def test_calculate_demos_correctly(self, replay_cache): + def test_calculate_demos_as_bumps_correctly(self, replay_cache): def test(analysis: AnalysisManager): proto_game = analysis.get_protobuf_data() count_demo_bumps = 0 @@ -13,4 +13,6 @@ def test(analysis: AnalysisManager): count_demo_bumps += 1 assert count_demo_bumps == 1 - run_analysis_test_on_replay(test, get_raw_replays()["1_DEMO"], cache=replay_cache) + # Skip test cache since this test is calculating intensive events. + run_analysis_test_on_replay(test, get_raw_replays()["1_DEMO"], + calculate_intensive_events=True)