From 75763dd8a6cc4c6b2cb67ac413934a17ec5e4339 Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Sat, 9 Jun 2018 20:41:36 +1200 Subject: [PATCH] Travis: add maud_extras to Clippy invocation --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 145b862d..f26f51c3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,7 @@ script: - | if command -v cargo-clippy > /dev/null; then CLIPPY_STATUS=0 - # TODO add `maud_extras` back in when Clippy issue is fixed - # https://github.com/rust-lang-nursery/rust-clippy/issues/2594 - for package in maud_htmlescape maud_macros maud maud_lints; do + for package in maud_htmlescape maud_macros maud maud_lints maud_extras; do (cd $package && cargo clippy -- -D warnings) || CLIPPY_STATUS=$? done (exit $CLIPPY_STATUS)