# What we want We would like to consider parallelising the execution of tests. # How do we do it This can be done with [`pytest-xdist`](https://github.com/pytest-dev/pytest-xdist) # What problems do we face - We might need to change how the database is created. For example, creating a new database for each worker
What we want
We would like to consider parallelising the execution of tests.
How do we do it
This can be done with
pytest-xdistWhat problems do we face