Skip to content

Commit 273d4dd

Browse files
committed
Twewak the build noxenv again.
Hopefully slightly more resilient for Windows.
1 parent 4817d36 commit 273d4dd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ jobs:
5757
noxenv: "tests-3.11(no-extras)"
5858
posargs: coverage github
5959
exclude:
60-
- os: windows-latest
61-
noxenv: readme
6260
- os: windows-latest
6361
noxenv: "docs(dirhtml)"
6462
- os: windows-latest

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ def build(session):
111111
with TemporaryDirectory() as tmpdir:
112112
session.run("python", "-m", "build", ROOT, "--outdir", tmpdir)
113113
session.run("twine", "check", "--strict", tmpdir + "/*")
114-
session.run("rst2html5.py", "--halt=warning", CHANGELOG, "/dev/null")
114+
session.run(
115+
"python", "-m", "docutils", "--strict", CHANGELOG, os.devnull,
116+
)
115117

116118

117119
@session()

0 commit comments

Comments
 (0)