diff --git a/rclpy/test/test_timer.py b/rclpy/test/test_timer.py index 2c12a1bf4..6480f6f1a 100644 --- a/rclpy/test/test_timer.py +++ b/rclpy/test/test_timer.py @@ -23,7 +23,12 @@ TEST_PERIODS = ( 0.1, - 0.01, + pytest.param( + 0.01, + marks=( + pytest.mark.skipif(os.name == 'nt', reason='Flaky on windows'), + ) + ), pytest.param( 0.001, marks=(