Skip to content

Commit 984e893

Browse files
committed
WPDWIDW
1 parent c105961 commit 984e893

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ jobs:
2121
run: rustup target add x86_64-unknown-linux-musl
2222
- name: Build
2323
run: cargo build --target=x86_64-unknown-linux-musl --verbose
24-
- name: Run tests
25-
# for some reason tests fail when running in parallel
26-
run: cargo test --target=x86_64-unknown-linux-musl --verbose -- --include-ignored --show-output
27-
#--test-threads 1
24+
- name: Run host tests
25+
run: cargo test --target=x86_64-unknown-linux-musl --verbose -- --show-output
26+
# container tests cannot run in parallel
27+
- name: Run container tests
28+
run: cargo test --target=x86_64-unknown-linux-musl --verbose -- --ignored --show-output --test-threads 1
2829
- name: Run clippy
2930
run: cargo clippy --verbose

0 commit comments

Comments
 (0)