From 7045fee26000e9e49fcf9cdb99db611a249ce915 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 12 Jun 2021 13:38:23 -0700 Subject: [PATCH] Fix outdated test instructions in CONTRIBUTING.md --- CONTRIBUTING.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 32646ebb2..20d7f4c0b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,22 +34,16 @@ tests for you. cargo test --features derive ``` -##### In the [`test_suite/deps`] directory - -```sh -# This is a prerequisite for running the full test suite -cargo clean && cargo update && cargo build -``` - ##### In the [`test_suite`] directory ```sh # Run the full test suite, including tests of unstable functionality -cargo test --features unstable +cargo +nightly test --features unstable ``` +Note that this test suite currently only supports running on a nightly compiler. + [`serde`]: https://github.com/serde-rs/serde/tree/master/serde -[`test_suite/deps`]: https://github.com/serde-rs/serde/tree/master/test_suite/deps [`test_suite`]: https://github.com/serde-rs/serde/tree/master/test_suite ## Conduct