Skip to content

Commit

Permalink
Auto merge of #6749 - camsteffen:test-all, r=Manishearth
Browse files Browse the repository at this point in the history
Test workspace at once

changelog: none

Follow-up to #6733
  • Loading branch information
bors committed Feb 16, 2021
2 parents e2753f9 + e355652 commit 877be18
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 20 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,8 @@ jobs:
- name: Test "--fix -Zunstable-options"
run: cargo run --features deny-warnings,internal-lints --bin cargo-clippy -- clippy --fix -Zunstable-options

- name: Test
run: cargo test --features deny-warnings,internal-lints

- name: Test clippy_lints
run: cargo test --features deny-warnings,internal-lints
working-directory: clippy_lints

- name: Test rustc_tools_util
run: cargo test --features deny-warnings
working-directory: rustc_tools_util
- name: Test Workspace
run: cargo test --all --features deny-warnings,internal-lints

- name: Test clippy_dev
run: cargo test --features deny-warnings
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/clippy_bors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,8 @@ jobs:
- name: Build
run: cargo build --features deny-warnings,internal-lints

- name: Test
run: cargo test --features deny-warnings,internal-lints

- name: Test clippy_lints
run: cargo test --features deny-warnings,internal-lints
working-directory: clippy_lints

- name: Test rustc_tools_util
run: cargo test --features deny-warnings
working-directory: rustc_tools_util
- name: Test Workspace
run: cargo test --all --features deny-warnings,internal-lints

- name: Test clippy_dev
run: cargo test --features deny-warnings
Expand Down
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ build = "build.rs"
edition = "2018"
publish = false

[workspace]
exclude = ["clippy_dev", "mini-macro"]

[[bin]]
name = "cargo-clippy"
test = false
Expand Down

0 comments on commit 877be18

Please sign in to comment.