1
0
mirror of https://github.com/containers/youki synced 2024-11-22 17:02:00 +01:00

Try setting test-threads count to 1 (#2685)

This commit is contained in:
Yashodhan 2024-02-16 17:40:09 +05:30 committed by GitHub
parent ad19476878
commit 762a2e818a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -39,11 +39,11 @@ test-basic: test-unit test-doc
# run cargo unit tests
test-unit:
{{ cwd }}/scripts/cargo.sh test --lib --bins --all --all-targets --all-features --no-fail-fast
{{ cwd }}/scripts/cargo.sh test --lib --bins --all --all-targets --all-features --no-fail-fast -- --test-threads=1
# run cargo doc tests
test-doc:
{{ cwd }}/scripts/cargo.sh test --doc
{{ cwd }}/scripts/cargo.sh test --doc -- --test-threads=1
# run permutated feature compilation tests
test-features: