summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-05-14 21:11:24 -0400
committerGitHub <noreply@github.com>2023-05-15 09:11:24 +0800
commit24c582a1dc0bc07da4247b938cf293a04010c0a9 (patch)
tree7156de3cb3a23a0b30b121737209bae6a572a0cd
parent7a7aa67abcbf6a2c968d3479383d57ebc47a1f29 (diff)
downloadcryptography-24c582a1dc0bc07da4247b938cf293a04010c0a9.tar.gz
Pass --all to cargo test (#8925)
-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
+ )