mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
Pass --all to cargo test (#8925)
This commit is contained in:
parent
7a7aa67abc
commit
24c582a1dc
1 changed files with 3 additions and 1 deletions
|
|
@ -143,4 +143,6 @@ def rust(session: nox.Session) -> None:
|
|||
with session.chdir("src/rust/"):
|
||||
session.run("cargo", "fmt", "--all", "--", "--check", external=True)
|
||||
session.run("cargo", "clippy", "--", "-D", "warnings", external=True)
|
||||
session.run("cargo", "test", "--no-default-features", external=True)
|
||||
session.run(
|
||||
"cargo", "test", "--no-default-features", "--all", external=True
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue