Skip to content

Commit 4e8b912

Browse files
committed
Ensure twine checks the README in strict mode.
1 parent a1d94d6 commit 4e8b912

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def readme(session):
3838
session.install("build", "twine")
3939
tmpdir = session.create_tmp()
4040
session.run("python", "-m", "build", ROOT, "--outdir", tmpdir)
41-
session.run("python", "-m", "twine", "check", tmpdir + "/*")
41+
session.run("python", "-m", "twine", "check", "--strict", tmpdir + "/*")
4242

4343

4444
@session(tags=["style"])

0 commit comments

Comments
 (0)