Skip to content

Commit

Permalink
Twewak the build noxenv again.
Browse files Browse the repository at this point in the history
Hopefully slightly more resilient for Windows.
  • Loading branch information
Julian committed Jul 9, 2023
1 parent 4817d36 commit 273d4dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ jobs:
noxenv: "tests-3.11(no-extras)"
posargs: coverage github
exclude:
- os: windows-latest
noxenv: readme
- os: windows-latest
noxenv: "docs(dirhtml)"
- os: windows-latest
Expand Down
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ def build(session):
with TemporaryDirectory() as tmpdir:
session.run("python", "-m", "build", ROOT, "--outdir", tmpdir)
session.run("twine", "check", "--strict", tmpdir + "/*")
session.run("rst2html5.py", "--halt=warning", CHANGELOG, "/dev/null")
session.run(
"python", "-m", "docutils", "--strict", CHANGELOG, os.devnull,
)


@session()
Expand Down

0 comments on commit 273d4dd

Please sign in to comment.