Skip to content

Commit

Permalink
Parallelize the testing task
Browse files Browse the repository at this point in the history
  • Loading branch information
faboshka committed Jan 6, 2024
1 parent ca8d736 commit 1574477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ mypy = { cmd = "mypy {all_paths}", use_vars = true, help = "run mypy on sources
post_mypy = { cmd = "echo 'Done running the \"mypy\" task!'" }

pre_test = { cmd = "echo 'Running the \"test\" task...'" }
test = { cmd = "pytest -v {tests_only}", use_vars = true, help = "run all tests." }
test = { cmd = "pytest -v {tests_only} -n auto", use_vars = true, help = "run all tests." }
post_test = { cmd = "echo 'Done running the \"test\" task!'" }

pre_format = { cmd = "echo 'Running the \"format\" task...'" }
Expand Down

0 comments on commit 1574477

Please sign in to comment.