From bc61bd9d3d401b8825bcfcd802ddd80a7ad2ebeb Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Sun, 18 Aug 2019 10:50:38 -0700 Subject: [PATCH] ci: ensure all tests are run for each feature (#1470) * This includes running docs, examples, and lib tests for each added feature, to ensure nothing is broken --- ci/azure-test-stable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/azure-test-stable.yml b/ci/azure-test-stable.yml index 0e93f6161..f0ff7a7c1 100644 --- a/ci/azure-test-stable.yml +++ b/ci/azure-test-stable.yml @@ -33,7 +33,7 @@ jobs: # Run with each specified feature - ${{ each feature in crate.value }}: - - script: cargo test --tests --no-default-features --features ${{ feature }} + - script: cargo test --no-default-features --features ${{ feature }} env: LOOM_MAX_PREEMPTIONS: 2 CI: 'True' @@ -53,7 +53,7 @@ jobs: # Run with each specified feature - ${{ each feature in crate.value }}: - - script: cargo test --tests --no-default-features --features ${{ feature }} + - script: cargo test --no-default-features --features ${{ feature }} env: LOOM_MAX_PREEMPTIONS: 2 CI: 'True'