Skip to content

Commit edb1c31

Browse files
committed
Avoid repeating slow doctests and compiletests
1 parent dffbe44 commit edb1c31

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: dtolnay/rust-toolchain@nightly
1515
- run: cargo test
16-
- run: cargo test --features preserve_order
17-
- run: cargo test --features arbitrary_precision
18-
- run: cargo test --features raw_value
19-
- run: cargo test --features unbounded_depth
16+
- run: cargo test --features preserve_order --tests -- --skip ui --exact
17+
- run: cargo test --features arbitrary_precision --tests -- --skip ui --exact
18+
- run: cargo test --features raw_value --tests -- --skip ui --exact
19+
- run: cargo test --features unbounded_depth --tests -- --skip ui --exact
2020

2121
build:
2222
name: Rust ${{matrix.rust}}

0 commit comments

Comments
 (0)