Skip to content

Commit

Permalink
ci: cargo test -- --include-ignored has been stabilized
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim committed Jun 24, 2023
1 parent 8b173d0 commit 00d33c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --workspace --all-targets -- -Z unstable-options --include-ignored
args: --verbose --workspace --all-targets -- --include-ignored
# `cargo test --all-targets` does not run doctest: https://github.com/rust-lang/cargo/issues/6669.
- name: cargo test (doc)
uses: actions-rs/cargo@v1
Expand All @@ -57,7 +57,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --workspace --all-targets -- -Z unstable-options --include-ignored
args: --verbose --workspace --all-targets -- --include-ignored
# `cargo test --all-targets` does not run doctest: https://github.com/rust-lang/cargo/issues/6669.
- name: cargo test (doc)
uses: actions-rs/cargo@v1
Expand All @@ -82,7 +82,7 @@ jobs:
run: |
set "LIB=%LIB%;%VCPKG_INSTALLATION_ROOT%\installed\x64-windows\lib"
set "PATH=%PATH%;%VCPKG_INSTALLATION_ROOT%\installed\x64-windows\bin"
cargo test --verbose --workspace --all-targets -- -Z unstable-options --include-ignored
cargo test --verbose --workspace --all-targets -- --include-ignored
shell: cmd
# `cargo test --all-targets` does not run doctest: https://github.com/rust-lang/cargo/issues/6669.
- name: cargo test (doc)
Expand Down

0 comments on commit 00d33c4

Please sign in to comment.