From 92c495aa930990c62ceba5954614c4aa3485af4d Mon Sep 17 00:00:00 2001 From: David Vo Date: Sun, 10 Mar 2024 14:37:38 +1100 Subject: [PATCH] pyfrc_test: Disable test_practice This takes 14s on my laptop. In practice, our fuzz tests likely hit more code paths than this test which simply has the robot sit in one spot. --- tests/pyfrc_test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/pyfrc_test.py b/tests/pyfrc_test.py index 3cd0f1a4..7f07b4f2 100644 --- a/tests/pyfrc_test.py +++ b/tests/pyfrc_test.py @@ -2,12 +2,10 @@ from pyfrc.tests import ( test_disabled, test_operator_control, - test_practice, ) # Make pyflakes happy about our imports. __all__ = ( "test_disabled", "test_operator_control", - "test_practice", )