Exclude perf tests from nano runs.

This commit is contained in:
Lakshmi Priya Sekar 2016-03-03 14:45:26 -08:00
Родитель b62c6dd99a
Коммит f12c7a927b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -7,8 +7,8 @@ pushd %1
FOR /D %%F IN (*.Tests) DO (
pushd %%F\dnxcore50
@echo "corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=failing -notrait category=nonwindowstests"
corerun.exe xunit.console.netcore.exe %%F.dll -notrait category=failing -notrait category=nonwindowstests
@echo "corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true"
corerun.exe xunit.console.netcore.exe %%F.dll -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true
popd )
popd