Travis: add maud_extras to Clippy invocation

This commit is contained in:
Chris Wong 2018-06-09 20:41:36 +12:00
parent 9763541ca7
commit 75763dd8a6

View file

@ -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)