summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-05-14 18:24:32 -0400
committerGitHub <noreply@github.com>2023-05-14 18:24:32 -0400
commit702587f948546a2412597a33416356159946a3a3 (patch)
tree4d6e75d3d60993c3883aefe737b2690f9dadaa78
parent4fc8e9aaa12f0b69fca0f36c544543aefb9c5d03 (diff)
downloadcryptography-alex-patch-2.tar.gz
Pass --all to cargo testalex-patch-2
-rw-r--r--noxfile.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/noxfile.py b/noxfile.py
index 8c9cc218b..c70b1c333 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -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
+ )