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 c5a017a commit 4078a93Copy full SHA for 4078a93
ultraplot/tests/test_demos.py
@@ -1,7 +1,12 @@
1
-import numpy as np, pytest, ultraplot as plt
+import numpy as np, pytest, ultraplot as plt, os
2
import matplotlib.font_manager as mfonts
3
import ultraplot.demos as demos
4
5
+# Skip all tests in this module when running on GitHub Actions
6
+pytestmark = pytest.mark.skipif(
7
+ os.getenv("GITHUB_ACTIONS") == "true", reason="Skip tests on GitHub Actions"
8
+)
9
+
10
11
def test_show_channels_requires_arg():
12
"""show_channels should raise when no positional colormap is provided."""
0 commit comments