Browse Source

Fix last clippy warning

embedded-hal-1.0
Chris 7 years ago
parent
commit
af685277f1
  1. 3
      .travis.yml

3
.travis.yml

@ -96,9 +96,10 @@ install:
- rustup target add thumbv7m-none-eabi - rustup target add thumbv7m-none-eabi
- rustup component add clippy-preview - rustup component add clippy-preview
#TODO: remove -A clippy::new_ret_no_self when new version of clippy gets released!
script: script:
- cargo check - cargo check
- cargo clippy --all-targets --all-features -- -D warnings - cargo clippy --all-targets --all-features -- -D warnings -A clippy::new_ret_no_self
- cargo test --all-features --release - cargo test --all-features --release
- cargo doc --all-features --release - cargo doc --all-features --release
- cd examples/embedded_linux_epd4in2 && cargo check && cd ../../ - cd examples/embedded_linux_epd4in2 && cargo check && cd ../../

Loading…
Cancel
Save