mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
12 lines
421 B
Batchfile
12 lines
421 B
Batchfile
|
cd Build
|
||
|
if "%CONFIGURATION%"=="Debug" (
|
||
|
echo "appveyorTestScript.bat thinks this is a Debug build"
|
||
|
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" (
|
||
|
echo "appveyorTestScript.bat thinks this is a Release build"
|
||
|
ctest -j 2 -C %CONFIGURATION%
|
||
|
)
|