Skip to content

Commit

Permalink
chore: add pypi check to lint (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon committed May 24, 2023
1 parent b2b0b86 commit 2c458bd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def lint(session):
"mypy",
BLACK_VERSION,
"types-setuptools",
"twine",
)
session.run(
"black",
Expand All @@ -55,6 +56,8 @@ def lint(session):
"tests",
)
session.run("mypy", "google", "--install-types", "--non-interactive")
session.run("python", "setup.py", "sdist")
session.run("twine", "check", "dist/*")


@nox.session
Expand Down

0 comments on commit 2c458bd

Please sign in to comment.