mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
Remove unused debugging feature
This commit is contained in:
parent
cc35165f52
commit
1d3ec29880
4 changed files with 5 additions and 6 deletions
|
@ -58,4 +58,3 @@ rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
|
|||
|
||||
[features]
|
||||
deny-warnings = []
|
||||
debugging = []
|
||||
|
|
|
@ -37,10 +37,10 @@ install:
|
|||
build: false
|
||||
|
||||
build_script:
|
||||
- cargo build --features debugging
|
||||
- cargo build --features deny-warnings
|
||||
|
||||
test_script:
|
||||
- cargo test --features debugging
|
||||
- cargo test --features deny-warnings
|
||||
|
||||
notifications:
|
||||
- provider: Email
|
||||
|
|
|
@ -12,8 +12,8 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|||
remark -f ./*.md -f doc/*.md > /dev/null
|
||||
fi
|
||||
# build clippy in debug mode and run tests
|
||||
cargo build --features "debugging deny-warnings"
|
||||
cargo test --features "debugging deny-warnings"
|
||||
cargo build --features deny-warnings
|
||||
cargo test --features deny-warnings
|
||||
|
||||
(cd clippy_lints && cargo test)
|
||||
(cd rustc_tools_util && cargo test)
|
||||
|
|
|
@ -35,4 +35,4 @@ semver = "0.9.0"
|
|||
url = { version = "2.1.0", features = ["serde"] }
|
||||
|
||||
[features]
|
||||
debugging = []
|
||||
deny-warnings = []
|
||||
|
|
Loading…
Reference in a new issue