Skip to content

Commit 5c8be37

Browse files
committed
Check ignored tests in CI
This does not run in nightly mode becuase curretly it is the bottleneck in the CI run. As such, there is nothing in the test that should break in nightly.
1 parent 30d04c0 commit 5c8be37

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,6 @@ jobs:
7474
cargo update --verbose --package "serde" --precise "1.0.98" && \
7575
cargo update --verbose --package "serde_derive" --precise "1.0.98"
7676
- name: Running cargo
77+
env:
78+
RUN_IGNORE: true
7779
run: ./contrib/test.sh

contrib/test.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ then
3030
)
3131
fi
3232

33+
# Fuzz if told to
34+
if [ "$RUN_IGNORE" = true ]
35+
then
36+
(
37+
cargo test -- --ignored
38+
)
39+
fi
40+
3341
# Test without any features first
3442
cargo test --verbose
3543

0 commit comments

Comments
 (0)