From fef401921cbc8821d67a68579fb9bb9371e7548f Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 16 Jan 2017 11:49:47 -0800 Subject: [PATCH] chore(travis): only test integration benches, not run full benchmarks --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ae548cd2..1aa06190 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ script: - cargo build --verbose $FEATURES - cargo test --verbose $FEATURES - 'for f in ./doc/**/*.md; do echo "Running rustdoc on $f"; rustdoc -L ./target/debug -L ./target/debug/deps --test $f; done' - - 'if [ $TRAVIS_RUST_VERSION = nightly ]; then cargo bench $FEATURES; fi' + - 'if [ $TRAVIS_RUST_VERSION = nightly ]; then for f in ./benches/*.rs; do cargo test --bench $(basename $f .rs) $FEATURES; done; fi' addons: apt: