File tree 4 files changed +10
-6
lines changed
4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ matrix:
32
32
# increased every 6 weeks or so when the first PR to use a new feature.
33
33
- env : TARGET=x86_64-unknown-linux-gnu
34
34
ALT=i686-unknown-linux-gnu
35
- rust : 1.27.2
35
+ rust : 1.28.0
36
36
script :
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 @@ -47,8 +47,8 @@ semver = { version = "0.9.0", features = ["serde"] }
47
47
serde = " 1.0"
48
48
serde_derive = " 1.0"
49
49
serde_ignored = " 0.0.4"
50
- serde_json = " 1.0"
51
- shell-escape = " 0.1"
50
+ serde_json = " 1.0.24 "
51
+ shell-escape = " 0.1.4 "
52
52
tar = { version = " 0.4.15" , default-features = false }
53
53
tempfile = " 3.0"
54
54
termcolor = " 1.0"
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ environment:
7
7
OTHER_TARGET : i686-pc-windows-msvc
8
8
MAKE_TARGETS : test-unit-x86_64-pc-windows-msvc
9
9
MINIMAL_VERSIONS : true
10
+ CFG_DISABLE_CROSS_TESTS : 1
10
11
11
12
install :
12
13
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
@@ -23,5 +24,8 @@ clone_depth: 1
23
24
build : false
24
25
25
26
test_script :
27
+ # we don't have ci time to run the full `cargo test` with `minimal-versions` like
28
+ # - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +stable test
29
+ # so we just run `cargo check --tests` like
26
30
- if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +stable check --tests
27
31
- 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