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
I didn't find any. Is there a command that will basically run several groups and collect output and display it? Needed so I can run locally with 1 command to speedup tests.
The text was updated successfully, but these errors were encountered:
If the motivation is to run the full test suite split into n sub suites running in parallel in local environment, I believe you could do something like pytest --splits 3 --group 1 & pytest --splits 3 --group 2 & pytest --splits 3 --group 3.
However, if this is about speeding up local runs, I'd recommend having a look at pytest-xdist.
I didn't find any. Is there a command that will basically run several groups and collect output and display it? Needed so I can run locally with 1 command to speedup tests.
The text was updated successfully, but these errors were encountered: