mirror of
https://github.com/wassname/ray.git
synced 2026-07-04 13:05:25 +08:00
Skip failing tests on Windows. (#10139)
This commit is contained in:
@@ -7,12 +7,14 @@ import pytest
|
||||
TYPING_TEST_DIRS = os.path.join(os.path.dirname(__file__), "typing_files")
|
||||
|
||||
|
||||
@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows.")
|
||||
def test_typing_good():
|
||||
script = os.path.join(TYPING_TEST_DIRS, "check_typing_good.py")
|
||||
msg, _, status_code = mypy_api.run([script])
|
||||
assert status_code == 0, msg
|
||||
|
||||
|
||||
@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows.")
|
||||
def test_typing_bad():
|
||||
script = os.path.join(TYPING_TEST_DIRS, "check_typing_bad.py")
|
||||
msg, _, status_code = mypy_api.run([script])
|
||||
|
||||
Reference in New Issue
Block a user