diff --git a/tests/test_shell.py b/tests/test_shell.py index c4741ec..2e87ae2 100755 --- a/tests/test_shell.py +++ b/tests/test_shell.py @@ -12,6 +12,10 @@ from cloudmesh.common.Benchmark import Benchmark import pytest +import os +from cloudmesh.common.util import str_bool +github_action = str_bool(os.getenv('GITHUB_ACTIONS', 'false')) + def run(command): parameter = command.split(" ") @@ -103,6 +107,8 @@ def test_pwd(self): def test_open(self): HEADING() + if os_is_windows() and github_action: + pytest.skip('not supported') Benchmark.Start() filename = 'cloudmesh/common/console.py' Shell.open(filename)