summaryrefslogtreecommitdiffstats
path: root/ci/azure-test-stable.yml
diff options
context:
space:
mode:
authorIvan Petkov <ivanppetkov@gmail.com>2019-08-18 10:50:38 -0700
committerGitHub <noreply@github.com>2019-08-18 10:50:38 -0700
commitbc61bd9d3d401b8825bcfcd802ddd80a7ad2ebeb (patch)
tree9dfdbd54251aaf0f8e4efae5f0c57fad91d48a29 /ci/azure-test-stable.yml
parenta9585f03187316c619ddc11321a2a02cbd0d702d (diff)
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
Diffstat (limited to 'ci/azure-test-stable.yml')
-rw-r--r--ci/azure-test-stable.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/azure-test-stable.yml b/ci/azure-test-stable.yml
index 0e93f616..f0ff7a7c 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'