diff --git a/.travis.yml b/.travis.yml index 2809c8e..686470f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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