mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 22:02:35 +00:00
Remove no-default-features test since it's not working
This commit is contained in:
parent
9388a099ef
commit
bf65ef3b45
3 changed files with 1 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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"
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue