From 6bc4a0295d3e8b09610c2269dd87035eb2450ab4 Mon Sep 17 00:00:00 2001 From: Valter Santos Date: Thu, 9 Jan 2025 20:52:13 +1300 Subject: [PATCH] docs: correct the `cargo test` command in the contribution guide (#2182) Co-authored-by: sxyazi --- .github/workflows/test.yml | 2 +- CONTRIBUTING.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d2e2d47..e12630e8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,4 +30,4 @@ jobs: run: cargo build --verbose - name: Test - run: cargo test --all --verbose + run: cargo test --workspace --verbose diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cb99aa35..83f8560c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -79,7 +79,7 @@ A brief overview of the project's structure: 3. Run the tests: ```sh - cargo test + cargo test --workspace ``` 4. Format the code (requires `rustfmt` nightly):