浏览代码

Travis: add Clippy to allowed failures.

whitequark 6 年之前
父节点
当前提交
a1d0602735
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      .travis.yml

+ 3 - 0
.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