travis: don't test individual features on beta&nightly

This commit is contained in:
Victor Berger 2019-02-06 17:27:12 +01:00 committed by Victor Berger
parent 89dce178c8
commit d6625b4b49
1 changed files with 9 additions and 2 deletions

View File

@ -3,8 +3,6 @@ language: rust
# We need this for the matrix, install is quick although unused
rust:
- stable
- beta
- nightly
sudo: required
@ -66,6 +64,15 @@ env:
matrix:
fast_finish: true
include:
# continue testing the full crate on beta&nightly to spot rustc regressions
- rust: beta
env: FEATURES="all"
- rust: beta
env: FEATURES="anvil" ANVIL_FEATURES="all"
- rust: nightly
env: FEATURES="all"
- rust: nightly
env: FEATURES="anvil" ANVIL_FEATURES="all"
# special features for lint & fmt
- rust: stable
env: FEATURES="cargo-fmt"