Skip to content

Commit 4aef932

Browse files
Merge #31: Run tests in a single thread, plus minor ci cleanups
a3ccd02 Run tests in a single thread, plus minor ci cleanups (Steve Myers) Pull request description: I changed the CI tests to run in a single thread (one at a time) which should improve test reliability. I also added names to all the test tasks, and remove redundant clippy checks. Top commit has no ACKs. Tree-SHA512: 8fc9b0036f392e8588a6e47c96fb19220bb24225ad8c3cc04970afc74bd8fbfbbcc8be04dfded9db35c3b830590311e7f012299feb8e98cc1fae162a6fb72594
2 parents 3030d2b + a3ccd02 commit 4aef932

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/cont_integration.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
run: cargo fmt -- --check --verbose
2727
- name: Build
2828
run: cargo build --verbose --all-features
29-
- name: Test
30-
run: cargo test --verbose --all-features
31-
- run: cargo check --verbose --no-default-features --features=blocking
32-
- run: cargo check --verbose --no-default-features --features=async
33-
- run: cargo check --verbose --no-default-features --features=async-https
29+
- name: Test all features
30+
run: cargo test --verbose --all-features -- --test-threads=1
31+
- name: Check only blocking feature
32+
run: cargo check --verbose --no-default-features --features=blocking
33+
- name: Check only async features
34+
run: cargo check --verbose --no-default-features --features=async
35+
- name: Check only async-http feature
36+
run: cargo check --verbose --no-default-features --features=async-https
3437
- name: Clippy
3538
run: cargo clippy --all-targets --all-features -- -D warnings
36-
- run: cargo clippy --all-targets --no-default-features --features=blocking -- -D warnings
37-
- run: cargo clippy --all-targets --no-default-features --features=async -- -D warnings
38-
- run: cargo clippy --all-targets --no-default-features --features=async-https -- -D warnings

0 commit comments

Comments
 (0)