CI: Stop running ignored tests

This got introduced in 2e3004f89e, but
there should be no reason to run ignored tests; if they are #[ignore]
it’s probably for a good reason.

This is particularly annoying with doctests, where ignore is used to
explicitly highlight broken/untested code.

Thanks jonas’ for noticing!
This commit is contained in:
Emmanuel Gil Peyrot 2024-06-24 10:58:45 +02:00
commit 9e07882531
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ variables:
.test:
stage: test
script:
- cargo test --verbose --release -- --include-ignored
- cargo test --verbose
- cargo test --verbose --no-default-features
rules:
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'