CleanCut / green

Green is a clean, colorful, fast python test runner.
MIT License
785 stars 75 forks source link

Output number of processes used in test summary #198

Closed Ogaday closed 5 years ago

Ogaday commented 5 years ago

Resolves CleanCut/green#85

Ogaday commented 5 years ago

I notice that on Travis the tests are run with -s 0 - what does that mean, and should the message change when that is the case?

CleanCut commented 5 years ago

I notice that on Travis the tests are run with -s 0 - what does that mean, and should the message change when that is the case?

-s 0 means "auto-detect the number of CPUs and use that many processes". That's specified explicitly in the tests because it didn't used to be the default. Now that it's the default, it is redundant. I went ahead and removed the -s 0.

Thanks for your pull request!