Skip to content

Commit

Permalink
Skip a couple tests that don't work on windows CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
brettle committed Sep 6, 2024
1 parent d8f6ff9 commit d73a1d1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,16 @@ def generateWorldsList(groupName):
# speaker test not working on github action because of missing sound drivers
# robot window and movie recording test not working on BETA Ubuntu 22.04 GitHub Action environment
# billboard test not working in macos GitHub Action environment
# billboard and robot window not working on windows GitHub Action environment.
if (not filename.endswith('_temp.wbt') and
not ('GITHUB_ACTIONS' in os.environ and (
filename.endswith('speaker.wbt') or
filename.endswith('local_proto_with_texture.wbt') or
(filename.endswith('robot_window_html.wbt') and is_ubuntu_22_04) or
(filename.endswith('supervisor_start_stop_movie.wbt') and is_ubuntu_22_04) or
(filename.endswith('billboard.wbt') and sys.platform == 'darwin')
(filename.endswith('billboard.wbt') and sys.platform == 'darwin') or
(filename.endswith('billboard.wbt') and sys.platform == 'win32') or
(filename.endswith('robot_window_html.wbt') and sys.platform == 'win32')
))):
worldsList.append(filename)

Expand Down

0 comments on commit d73a1d1

Please sign in to comment.