Exec. tests in parallel (test exec. speed)
buckyroberts opened this issue · 3 comments
buckyroberts commented
Exec. tests in parallel (test exec. speed)
fonar commented
--- cut ---
Mikhail: agree, one of the options is simply adding pytext-xdist package
Volodymyr: Well, it’s not THAT simple, one should also take care of databases, since tests are running in parallel, one test can interfere to another, so, there should be a separate database per test thread, not a rocket science, but should be considered
--- cut ---
@buckyroberts @vosi
Actually, it's that simple, as it's already done by pytest-django, and pytest-xdist required as requirement for pytest-django in case we running it in parallel.
All we need is:
(1) add pytest-xdist as requirement
(2) run pytest -n NUMBER_OF_PROCESSES