Skip to content

Commit b1eec6b

Browse files
committed
Remove all references to clippy_tests
1 parent 70cc950 commit b1eec6b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ out
1515
# Generated by Cargo
1616
/target/
1717
/clippy_lints/target/
18-
/clippy_tests/target/
1918

2019
# We don't pin yet
2120
Cargo.lock

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sudo: false
1111
cache:
1212
cargo: true
1313
directories:
14-
- clippy_tests/target
14+
- target
1515

1616
env:
1717
global:
@@ -32,7 +32,7 @@ script:
3232
- cargo build --features debugging
3333
- cargo test --features debugging
3434
- mkdir -p ~/rust/cargo/bin
35-
- cp clippy_tests/target/debug/cargo-clippy ~/rust/cargo/bin/cargo-clippy
35+
- cp target/debug/cargo-clippy ~/rust/cargo/bin/cargo-clippy
3636
- PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy
3737
- cd clippy_lints && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..
3838
- cd clippy_workspace_tests && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test_script:
2626
- set RUST_BACKTRACE=1
2727
- cargo build --features debugging
2828
- cargo test --features debugging
29-
- copy clippy_tests\target\debug\cargo-clippy.exe C:\Users\appveyor\.cargo\bin\
29+
- copy target\debug\cargo-clippy.exe C:\Users\appveyor\.cargo\bin\
3030
- cargo clippy -- -D clippy
3131
- cd clippy_lints && cargo clippy -- -D clippy && cd ..
3232

0 commit comments

Comments
 (0)