Skip to content

Commit

Permalink
[ci]: remove feature flags in virtual workspace
Browse files Browse the repository at this point in the history
For more information rust-lang/cargo#7507
  • Loading branch information
niklasad1 committed Dec 21, 2019
1 parent 5837dff commit fddcaaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ install:
- cargo -vV

build_script:
- cargo check --tests --features "%FEATURES%"
- cargo build --all --features "%FEATURES%"
- cargo check --tests
- cargo build --all

test_script:
- cargo test --all --features "%FEATURES%" --exclude uint --exclude fixed-hash
- cargo test --all --exclude uint --exclude fixed-hash
- cd fixed-hash/ && cargo test --all-features && cd ..
- cd uint/ && cargo test --features=std,quickcheck --release && cd ..
- cd plain_hasher/ && cargo test --no-default-features && cd ..
Expand Down

0 comments on commit fddcaaa

Please sign in to comment.