Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion ultraplot/tests/test_demos.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import numpy as np, pytest, ultraplot as plt
import numpy as np, pytest, ultraplot as plt, os
import matplotlib.font_manager as mfonts
import ultraplot.demos as demos

# Skip all tests in this module when running on GitHub Actions
pytestmark = pytest.mark.skipif(
os.getenv("GITHUB_ACTIONS") == "true", reason="Skip tests on GitHub Actions"
)


def test_show_channels_requires_arg():
"""show_channels should raise when no positional colormap is provided."""
Expand Down
Loading