We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8dcf8d commit 59f4a6fCopy full SHA for 59f4a6f
frouros/tests/integration/test_real.py
@@ -23,9 +23,12 @@ def test_elec2_file_not_found_error(elec2_raw: Elec2) -> None:
23
_ = elec2_raw.load()
24
25
26
-# FIXME: PermissionError not raised on Windows
+# FIXME: PermissionError not raised on Windows or MacOS.
27
@pytest.mark.skipif(
28
- sys.platform.startswith("win"), reason="PermissionError not raised on Windows.r"
+ sys.platform.startswith("win"), reason="PermissionError not raised on Windows.",
29
+)
30
+@pytest.mark.skipif(
31
+ sys.platform.startswith("darwin"), reason="PermissionError not raised on MacOS.",
32
)
33
def test_elec2_permission_error() -> None:
34
"""Test Elec2 permission error."""
0 commit comments