Remove no-default-features test since it's not working

This commit is contained in:
Pavan Kumar Sunkara 2020-04-10 16:45:29 +02:00
parent 9388a099ef
commit bf65ef3b45
3 changed files with 1 additions and 9 deletions

View file

@ -43,14 +43,8 @@ stages:
displayName: Cache cargo
- script: rustup default $(rust)-$(target)
displayName: Install rust
- script: cargo test --no-default-features
displayName: Test without default features
env:
RUST_BACKTRACE: full
- script: cargo test --features "yaml unstable"
displayName: Test with most features
env:
RUST_BACKTRACE: full
- script: |
rmdir /Q /S C:\Rust\.cargo\registry\src
displayName: Cleanup cache

View file

@ -58,8 +58,7 @@ jobs:
script:
- cargo tarpaulin --workspace --features "yaml unstable" --ciserver travis-ci --coveralls $TRAVIS_JOB_ID
script:
- cargo test --no-default-features
- cargo test --features yaml unstable
- cargo test --features "yaml unstable"
notifications:
email: false
env:

View file

@ -9,7 +9,6 @@ Another really great way to help is if you find an interesting, or helpful way i
To test with all features both enabled and disabled, you can run these commands:
```sh
$ cargo test --no-default-features
$ cargo test --features "yaml unstable"
```