fix: run tests sequentially to avoid race cond
This commit is contained in:
parent
f17e38c531
commit
be03da096e
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -86,7 +86,7 @@ sqlx-offline-data: ## prepare sqlx offline data
|
||||||
test: frontend ## Run tests
|
test: frontend ## Run tests
|
||||||
echo 'static/' && tree static || true
|
echo 'static/' && tree static || true
|
||||||
echo 'tree/' && tree assets || true
|
echo 'tree/' && tree assets || true
|
||||||
cargo test --all-features --no-fail-fast
|
cargo test --all-features --no-fail-fast -j 1
|
||||||
|
|
||||||
xml-test-coverage: migrate ## Generate cobertura.xml test coverage
|
xml-test-coverage: migrate ## Generate cobertura.xml test coverage
|
||||||
cargo tarpaulin -t 1200 --out Xml
|
cargo tarpaulin -t 1200 --out Xml
|
||||||
|
|
Loading…
Reference in a new issue