Skip to content

Commit a7fc60c

Browse files
committed
Remove old nox-based per-PR linkcheck.
1 parent 21e230f commit a7fc60c

File tree

2 files changed

+1
-27
lines changed

2 files changed

+1
-27
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
matrix:
3737
os: ["ubuntu-latest"]
3838
python-version: ["3.13"]
39-
session: ["doctest", "gallery", "linkcheck"]
39+
session: ["doctest", "gallery"]
4040
include:
4141
- os: "ubuntu-latest"
4242
python-version: "3.13"

noxfile.py

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -240,32 +240,6 @@ def gallery(session: nox.sessions.Session):
240240
)
241241

242242

243-
@nox.session(python=_PY_VERSION_DOCSBUILD, venv_backend="conda")
244-
def linkcheck(session: nox.sessions.Session):
245-
"""Perform iris doc link check.
246-
247-
Parameters
248-
----------
249-
session : object
250-
A `nox.sessions.Session` object.
251-
252-
"""
253-
prepare_venv(session)
254-
session.install("--no-deps", "--editable", ".")
255-
session.cd("docs")
256-
session.run(
257-
"make",
258-
"clean",
259-
"html",
260-
external=True,
261-
)
262-
session.run(
263-
"make",
264-
"linkcheck",
265-
external=True,
266-
)
267-
268-
269243
@nox.session(python=PY_VER, venv_backend="conda")
270244
def wheel(session: nox.sessions.Session):
271245
"""Perform iris local wheel install and import test.

0 commit comments

Comments
 (0)