microsoft / codecoverage

MIT License
81 stars 11 forks source link

dotnet-coverage, what is the maximum number of tests that I can run? #138

Open HeytalePazguato opened 1 month ago

HeytalePazguato commented 1 month ago

I have a solution with multiple test projects, I have reached the point where adding a test, any test, will make other tests, that usually pass, fail.

I am using this command

dotnet-coverage collect -f xml -o coverage.xml dotnet test

I am running in total 92 tests across 5 projects divided as follows

Project 1: 12 tests Project 2: 6 tests Project 3: 8 tests Project 4: 36 tests Project 5: 30 tests

What are the limits per TextFixture, Project, Solution?

Why will my previously defined tests fail if I add any new test?

Just to clarify, the tests that fail are previous passing tests, not the new ones.

I am using the version 17.12.2

jakubch1 commented 1 month ago

@HeytalePazguato could you please provide your solution so we can repro locally? There are no limits so no things you described should happen.