Problem: Appveyor runs test sequentially

Solution: add -j flag to run them in paralle, cuts test runtime
from ~80 to ~20 seconds
This commit is contained in:
Luca Boccassi 2018-04-29 20:53:23 +01:00
parent e5eab4b91f
commit 09d951ada3

View File

@ -102,5 +102,5 @@ after_build:
test_script:
- cmd: cd "%LIBZMQ_BUILDDIR%"
- cmd: ctest -C "%Configuration%" -V
- cmd: ctest -C "%Configuration%" -V -j5