From 493afea3f55309198b6d528fb1d781dfa4b7437b Mon Sep 17 00:00:00 2001 From: Andreas Linz Date: Wed, 25 Oct 2017 22:49:06 +0200 Subject: [PATCH] Run test in release mode Tests were pretty slow before. Additionally, this commit fixes the indentation of .travis.yml and does also run `cargo test` in Travis. --- .travis.yml | 5 +++-- appveyor.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e41d2b5..b84ae66 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,5 +9,6 @@ matrix: - rust: nightly include: - rust: nightly - script: - - cargo bench +script: + - cargo bench + - cargo test --release diff --git a/appveyor.yml b/appveyor.yml index 6a1b8dc..07ff032 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,4 +14,4 @@ install: build: false test_script: - - cargo test --verbose + - cargo test --release --verbose