Files
Catch2/misc/appveyorTestRunScript.bat
T

14 lines
377 B
Batchfile
Raw Normal View History

cd Build
if "%CONFIGURATION%"=="Debug" (
2018-03-06 18:33:18 +01:00
if "%coverage%"=="1" (
ctest -j 2 -C %CONFIGURATION% -D ExperimentalMemCheck
python ..\misc\appveyorMergeCoverageScript.py
codecov --root .. --no-color --disable gcov -f cobertura.xml -t %CODECOV_TOKEN%
) else (
ctest -j 2 -C %CONFIGURATION%
)
)
if "%CONFIGURATION%"=="Release" (
ctest -j 2 -C %CONFIGURATION%
)