diff options
-rw-r--r-- | noxfile.py | 4 |
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 + ) |