Itiviti / gradle-nunit-plugin

A gradle plugin for launching NUnit tests
Apache License 2.0
17 stars 20 forks source link

Added NUnitMultitest task #16

Closed sorin-bolos closed 8 years ago

sorin-bolos commented 8 years ago

-this task allows multiple tests sets to be run in parallel by starting multiple NUnit processes

gluck commented 8 years ago

Thx !

Sounds a bit troublesome to have an extra task just for the sake of running tests in parallel no ?

sorin-bolos commented 8 years ago

So you're saying that this should be done differently or that it shouldn't be done at all?

gluck commented 8 years ago

I'm wondering if it could be done differently, as an option to the current nunit task (e.g. parallel_forks = true)

sorin-bolos commented 8 years ago

Ok, but the existing task takes a single test filter as a parameter and we need a list of filters to get them running in parallel. We'll need either to change the parameter or add a new one. Which do you prefer?