File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ matrix:
37
37
- rustup toolchain install nightly
38
38
- cargo +nightly generate-lockfile -Z minimal-versions
39
39
- cargo -V
40
- - cargo check --tests
40
+ - cargo test
41
41
42
42
- env : TARGET=x86_64-unknown-linux-gnu
43
43
ALT=i686-unknown-linux-gnu
Original file line number Diff line number Diff line change @@ -23,5 +23,5 @@ clone_depth: 1
23
23
build : false
24
24
25
25
test_script :
26
- - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +stable check --tests
26
+ - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +stable test
27
27
- if NOT defined MINIMAL_VERSIONS cargo test
Original file line number Diff line number Diff line change 4
4
#![ cfg_attr( feature = "cargo-clippy" , allow( boxed_local) ) ] // bug rust-lang-nursery/rust-clippy#1123
5
5
#![ cfg_attr( feature = "cargo-clippy" , allow( cyclomatic_complexity) ) ] // large project
6
6
#![ cfg_attr( feature = "cargo-clippy" , allow( derive_hash_xor_eq) ) ] // there's an intentional incoherence
7
- #![ cfg_attr( feature = "cargo-clippy" , allow( explicit_into_iter_loop) ) ] // (unclear why)
8
- #![ cfg_attr( feature = "cargo-clippy" , allow( explicit_iter_loop) ) ] // (unclear why)
7
+ #![ cfg_attr( feature = "cargo-clippy" , allow( explicit_into_iter_loop) ) ] // explicit loops are clearer
8
+ #![ cfg_attr( feature = "cargo-clippy" , allow( explicit_iter_loop) ) ] // explicit loops are clearer
9
9
#![ cfg_attr( feature = "cargo-clippy" , allow( identity_op) ) ] // used for vertical alignment
10
10
#![ cfg_attr( feature = "cargo-clippy" , allow( implicit_hasher) ) ] // large project
11
11
#![ cfg_attr( feature = "cargo-clippy" , allow( large_enum_variant) ) ] // large project
You can’t perform that action at this time.
0 commit comments