mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
Remove all references to clippy_tests
This commit is contained in:
parent
70cc9509c1
commit
b1eec6b402
3 changed files with 3 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,7 +15,6 @@ out
|
|||
# Generated by Cargo
|
||||
/target/
|
||||
/clippy_lints/target/
|
||||
/clippy_tests/target/
|
||||
|
||||
# We don't pin yet
|
||||
Cargo.lock
|
||||
|
|
|
@ -11,7 +11,7 @@ sudo: false
|
|||
cache:
|
||||
cargo: true
|
||||
directories:
|
||||
- clippy_tests/target
|
||||
- target
|
||||
|
||||
env:
|
||||
global:
|
||||
|
@ -32,7 +32,7 @@ script:
|
|||
- cargo build --features debugging
|
||||
- cargo test --features debugging
|
||||
- mkdir -p ~/rust/cargo/bin
|
||||
- cp clippy_tests/target/debug/cargo-clippy ~/rust/cargo/bin/cargo-clippy
|
||||
- cp target/debug/cargo-clippy ~/rust/cargo/bin/cargo-clippy
|
||||
- PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy
|
||||
- cd clippy_lints && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..
|
||||
- cd clippy_workspace_tests && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..
|
||||
|
|
|
@ -26,7 +26,7 @@ test_script:
|
|||
- set RUST_BACKTRACE=1
|
||||
- cargo build --features debugging
|
||||
- cargo test --features debugging
|
||||
- copy clippy_tests\target\debug\cargo-clippy.exe C:\Users\appveyor\.cargo\bin\
|
||||
- copy target\debug\cargo-clippy.exe C:\Users\appveyor\.cargo\bin\
|
||||
- cargo clippy -- -D clippy
|
||||
- cd clippy_lints && cargo clippy -- -D clippy && cd ..
|
||||
|
||||
|
|
Loading…
Reference in a new issue