From 280e65c816f7ca2590de8584e778b96a3ce4a0f4 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Sun, 10 Jan 2021 11:36:41 -0800 Subject: [PATCH] test: use +nightly for check/clippy --- tests/x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/x.py b/tests/x.py index 8bfbd37a..0f92f463 100755 --- a/tests/x.py +++ b/tests/x.py @@ -70,7 +70,7 @@ def run_check(project_name: str, *, args, variant=None, cmd="check"): Path(f"{project}/src/lib.rs").touch() run([ - "cargo", cmd, + "cargo", "+nightly", cmd, "--manifest-path", f"{project}/Cargo.toml", *args, ], cwd=project_dir, comment=comment, tag=tag)