You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Over multiple environments (i.e., python versions). This can be done either via parallelization directly in the github workflow, or we can tell tox to parallelize environments.
Over multiple tests with pytest-xdist using the flag -n auto.
Drawbacks:
Parallelizing the tests changes the console output for the test workflow, since intermediate results cannot be shown until all tests have completed.
The text was updated successfully, but these errors were encountered:
We can parallelize the test workflow in 2 ways:
tox
to parallelize environments.pytest-xdist
using the flag-n auto
.Drawbacks:
The text was updated successfully, but these errors were encountered: