Skip to content

Commit

Permalink
Skip tests on Windows
Browse files Browse the repository at this point in the history
Other CLI tests are skipped on Windows since #489.

To be reverted when ros2/build_farmer#248 is resolved.

Signed-off-by: Jacob Perron <[email protected]>
  • Loading branch information
jacobperron committed Apr 16, 2020
1 parent 933f8da commit 912b1ba
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ros2param/test/test_verb_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 912b1ba

Please sign in to comment.