Skip to content

Commit 7aa03ec

Browse files
aaythapahoffa
andauthored
chore: run test coverage command in parallel (#3037)
Co-authored-by: Christoffer Rehn <[email protected]>
1 parent ece5aaf commit 7aa03ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ test-fast:
1212
pytest -x --cov samtranslator --cov-report term-missing --cov-fail-under 95 -n auto tests/
1313

1414
test-cov-report:
15-
pytest --cov samtranslator --cov-report term-missing --cov-report html --cov-fail-under 95 tests/
15+
pytest --cov samtranslator --cov-report term-missing --cov-report html --cov-fail-under 95 -n auto tests/
16+
open htmlcov/index.html &> /dev/null || true
1617

1718
integ-test:
1819
pytest --no-cov integration/

0 commit comments

Comments
 (0)