Skip to content

Commit

Permalink
Run check-sdist with --no-isolation (#9791)
Browse files Browse the repository at this point in the history
* Run check-sdist with --no-isolation

This is primarily useful for quick dev-cycles locally

* Update noxfile.py
  • Loading branch information
alex authored Oct 27, 2023
1 parent bb28549 commit 1e190d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ def flake(session: nox.Session) -> None:
# but not install us.
install(
session,
"setuptools-rust",
"cffi>=1.12; platform_python_implementation != 'PyPy'",
"wheel",
"ruff",
"check-sdist",
"mypy",
Expand All @@ -170,7 +173,7 @@ def flake(session: nox.Session) -> None:

session.run("ruff", ".")
session.run("ruff", "format", "--check", ".")
session.run("check-sdist")
session.run("check-sdist", "--no-isolation")
session.run(
"mypy",
"src/cryptography/",
Expand Down

0 comments on commit 1e190d3

Please sign in to comment.