-
Notifications
You must be signed in to change notification settings - Fork 74
Description
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
We have a very large codebase and a large number of tests (31k+ and counting). In order to not make CI times enormous we parallelize the tests. We also don't use xdist (for a variety of reasons).
This makes running testmon difficult because of the sqlite db which is single writer only which means each thread would have to have its own db and then recombine them at the end
Describe the solution you'd like
A clear and concise description of what you want to happen.
I'd like a way to run tests in separate threads, in parallel, while still using testmon to figure out what tests need to be run.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.