Travis: add Clippy to allowed failures.

This commit is contained in:
whitequark 2018-06-23 02:52:26 +00:00
parent 3e124ef482
commit 00e9d64911
1 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,9 @@ matrix:
# even when it's successful. Keep this in .travis.yml in case it starts working some day.
- rust: nightly
env: MODE='fuzz run' ARGS='packet_parser -- -max_len=1536 -max_total_time=30'
# Clippy sometimes fails to compile and this shouldn't gate merges
- rust: nightly
env: FEATURES='default' MODE='clippy'
before_script:
- if [ "$MODE" == "fuzz run" ]; then cargo install cargo-fuzz; fi
- if [ "$MODE" == "clippy" ]; then cargo install clippy; fi