From b44ffc963797a9caf778fcd9e8ff74053a0c12c8 Mon Sep 17 00:00:00 2001 From: PoiScript Date: Wed, 9 Oct 2019 11:56:07 +0800 Subject: [PATCH] ci: allow failure at rust nightly --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b527b92..f00f6fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,10 @@ rust: - stable - nightly +matrix: + allow_failures: + - rust: nightly + cache: cargo before_script: @@ -11,9 +15,9 @@ before_script: script: - cargo fmt --all -- --check - if [ $TRAVIS_RUST_VERSION == "stable" ]; then - cargo test -p orgize-demos -p orgize; + cargo test -p orgize-demos -p orgize --all-features; else - cargo test -p orgize-sync; + cargo test -p orgize-sync --all-features; fi deploy: