Skip flaky unit test (#4591)

This commit is contained in:
Davis Chase
2023-05-12 11:54:40 -07:00
committed by GitHub
parent 08ed927c32
commit 36f9e9a0ba

View File

@@ -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"
)