mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
Special-case installation of vectors in local nox (#10190)
This saves roughly a second, but makes getting feedback much more responsive.
This commit is contained in:
parent
1f8fbed124
commit
376a266cef
1 changed files with 3 additions and 1 deletions
|
|
@ -257,9 +257,11 @@ def local(session):
|
|||
*pyproject_data["project"]["optional-dependencies"]["test"],
|
||||
*pyproject_data["project"]["optional-dependencies"]["ssh"],
|
||||
*pyproject_data["project"]["optional-dependencies"]["nox"],
|
||||
"flit",
|
||||
silent=True,
|
||||
)
|
||||
install(session, "-e", "vectors/", silent=True)
|
||||
with session.cd("vectors/"):
|
||||
session.run("flit", "install", "-s", silent=True)
|
||||
|
||||
session.run("ruff", "format", ".")
|
||||
session.run("ruff", ".")
|
||||
|
|
|
|||
Loading…
Reference in a new issue