diff --git a/tests/unit_tests/test_bash.py b/tests/unit_tests/test_bash.py index 29b1ce3b..d4ecd84d 100644 --- a/tests/unit_tests/test_bash.py +++ b/tests/unit_tests/test_bash.py @@ -21,6 +21,7 @@ def test_pwd_command() -> None: assert output == subprocess.check_output("pwd", shell=True).decode() +@pytest.mark.skip(reason="flaky on GHA, TODO to fix") @pytest.mark.skipif( sys.platform.startswith("win"), reason="Test not supported on Windows" )