diff --git a/ros2param/test/test_verb_dump.py b/ros2param/test/test_verb_dump.py index dfd4e94f8..9bee67504 100644 --- a/ros2param/test/test_verb_dump.py +++ b/ros2param/test/test_verb_dump.py @@ -56,6 +56,13 @@ ' use_sim_time: false\n' ) +# Skip cli tests on Windows while they exhibit pathological behavior +# https://github.com/ros2/build_farmer/issues/248 +if sys.platform.startswith('win'): + pytest.skip( + 'CLI tests can block for a pathological amount of time on Windows.', + allow_module_level=True) + @pytest.mark.rostest @launch_testing.parametrize('rmw_implementation', get_available_rmw_implementations())