Skip to content

Commit

Permalink
debug windows runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfleischer committed Nov 27, 2023
1 parent 40ff4ad commit 8490165
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(" ")
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 8490165

Please sign in to comment.