11 lines
168 B
Batchfile
11 lines
168 B
Batchfile
SET /a VAR=0
|
|
:HOME
|
|
SET /a VAR=VAR+1
|
|
rem 1000 runs is about 6 hours at current test pace with huge data
|
|
IF %VAR%==1000 goto :End
|
|
|
|
dotnet test
|
|
|
|
goto :HOME
|
|
|
|
:END |