From dce7fc146862d637fb1486716929573b8d0614ef Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Thu, 5 Oct 2017 16:24:59 +0300 Subject: [PATCH] Updated .gitlab-ci.yml --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d474657..050c066 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,8 +15,8 @@ test:stable: image: "rust" script: - rustc --version && cargo --version # Print version info for debugging - - cargo build - - cargo test --verbose --jobs 1 + - cargo build --all + - cargo test --all --verbose --jobs 1 # Use cargo to test the project test:nightly: @@ -29,5 +29,5 @@ test:nightly: # - cargo test --verbose # # Don't paralize, At least until I fix tempdb helper fn. - cargo test --verbose --jobs 1 - - cargo bench + # - cargo bench allow_failure: true