We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8a3a23 commit 2ccb5efCopy full SHA for 2ccb5ef
1 file changed
tests/integration/cmor/test_read_cmor_tables.py
@@ -1,5 +1,6 @@
1
from __future__ import annotations
2
3
+import sys
4
from pathlib import Path
5
from textwrap import dedent
6
from typing import TYPE_CHECKING
@@ -30,6 +31,9 @@ def test_read_cmor_tables_raiser():
30
31
assert "cow" in str(exc)
32
33
34
+# this test is a mess in OSX: some PosixPaths end in Tables, others in tables
35
+# since OSX is case-insensitive in PosixPaths
36
+@pytest.mark.skipif(sys.platform == "darwin", reason="flaky in OSX")
37
def test_read_cmor_tables_from_config_developer(monkeypatch):
38
"""Test that the function `read_cmor_tables` loads the tables correctly."""
39
monkeypatch.setattr(esmvalcore.cmor.table, "CMOR_TABLES", {})
0 commit comments