From ae1395fb326f0152d38e856157abbf963053bb83 Mon Sep 17 00:00:00 2001 From: Victor Berger Date: Mon, 7 May 2018 20:03:14 +0200 Subject: [PATCH] anvil: test on travis --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index cd24a90..09a0917 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,6 +47,8 @@ env: - FEATURES="default" # test all features simultaneously - FEATURES="all" + # test our house compositor + - FEATURES="anvil" matrix: include: @@ -85,6 +87,9 @@ script: vagga cargo-$TRAVIS_RUST_VERSION install -f clippy && vagga cargo-$TRAVIS_RUST_VERSION clippy --all-features -- -D warnings ;; + "anvil") + vagga cargo-$TRAVIS_RUST_VERSION test -p anvil --all-features + ;; *) vagga cargo-$TRAVIS_RUST_VERSION test --lib --doc --tests --no-default-features --features "$FEATURES" && vagga cargo-$TRAVIS_RUST_VERSION doc --no-deps --no-default-features --features "$FEATURES"