mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 13:19:55 +01:00
10 lines
297 B
Batchfile
10 lines
297 B
Batchfile
cd Build
|
|
if "%CONFIGURATION%"=="Debug" (
|
|
ctest -j 2 -C %CONFIGURATION% -D ExperimentalMemCheck
|
|
python ..\misc\appveyorMergeCoverageScript.py
|
|
codecov --root .. --no-color --disable gcov -f cobertura.xml -t %CODECOV_TOKEN%
|
|
)
|
|
if "%CONFIGURATION%"=="Release" (
|
|
ctest -j 2 -C %CONFIGURATION%
|
|
)
|