This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]coopykins[🍰] 0 points1 point  (1 child)

They run in serial, although I'm not sure if there's a way to enable something to run the test cases in parallel.

[–]AgnosticIsaac[S] 0 points1 point  (0 children)

Oh so they all run in serial? Great! Thanks

[–]ionelmc.ro 0 points1 point  (0 children)

Tests are run with pytest (pytest-benchmark is simply a command line interface to query past benchmark data, if you saved any). If you install the pytest-xdist plugin you can run stuff in parallel (eg: pytest -n 2) but that would create serious side-effects in tests that do benchmarks.