Files
raven/test/raven-integration/burntest.bat
2018-10-08 22:47:29 +00:00

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