Skip to content

Commit 6a2b42c

Browse files
committed
Ensure twine checks the README in strict mode.
1 parent bcd4cca commit 6a2b42c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def readme(session):
6767
session.install("build", "twine")
6868
tmpdir = session.create_tmp()
6969
session.run("python", "-m", "build", ROOT, "--outdir", tmpdir)
70-
session.run("python", "-m", "twine", "check", tmpdir + "/*")
70+
session.run("python", "-m", "twine", "check", "--strict", tmpdir + "/*")
7171

7272

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

0 commit comments

Comments
 (0)