We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c7aae7 + 341ef3a commit 4c33ec5Copy full SHA for 4c33ec5
.github/workflows/ci.yml
@@ -67,6 +67,7 @@ jobs:
67
python -m pytest test
68
69
link-check:
70
+ if: github.event_name != 'pull_request'
71
runs-on: ubuntu-latest
72
defaults:
73
run:
@@ -114,4 +115,5 @@ jobs:
114
115
eval "$(micromamba shell hook --shell bash)"
116
micromamba activate uxarray-docs
117
cd docs
118
+ echo 'nb_execution_mode = "off"' >> conf.py
119
make linkcheck
test/test_plot.py
@@ -4,6 +4,8 @@
4
import pytest
5
import numpy as np
6
7
+import matplotlib
8
+matplotlib.use("Agg")
9
import matplotlib.pyplot as plt
10
import cartopy.crs as ccrs
11
0 commit comments