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
When using tox --parallel, coverage writes a number of data files and tries to combine them. But multiple processes are working in the same directory, creating a race condition. If we had an environment variable that distinguished among the parallel workers, we could name the data files differently and avoid collisions.
What's the problem this feature will solve?
When using
tox --parallel
, coverage writes a number of data files and tries to combine them. But multiple processes are working in the same directory, creating a race condition. If we had an environment variable that distinguished among the parallel workers, we could name the data files differently and avoid collisions.Here are reports of the problem:
Describe the solution you'd like
An environment variable called TOX_WORKER, a number for each worker, similar to pytest xdist's PYTEST_XDIST_WORKER.
The text was updated successfully, but these errors were encountered: