parity-common/.travis.yml

14 lines
363 B
YAML

language: rust
rust:
- stable
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cargo build
- cargo test --all --exclude uint
- cd uint/ && cargo test --features=std,impl_quickcheck_arbitrary --release && cd ..
- cd hashdb/ && cargo test --no-default-features && cd ..
- cd plain_hasher/ && cargo test --no-default-features && cd ..