Skip to content

Commit

Permalink
CI: Skip test-unit_all on MSVC Debug builds
Browse files Browse the repository at this point in the history
  • Loading branch information
nickaein committed Jun 24, 2019
1 parent 3db14cb commit 5b2e230
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ build_script:
- cmake --build . --config "%configuration%"

test_script:
# Set 1 hour timeout to avoid the occasional
# timeouts on test-unicode_all
- ctest --timeout 3600 -C "%configuration%" -V -j
- if "%configuration%"=="Release" ctest -C "%configuration%" -V -j
# On Debug builds, skip test-unicode_all
# as it is extremely slow to run and cause
# occasional timeouts on AppVeyor.
# More info: https://github.com/nlohmann/json/pull/1570
- if "%configuration%"=="Debug" ctest --exclude-regex "test-unicode_all" -C "%configuration%" -V -j

0 comments on commit 5b2e230

Please sign in to comment.