Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion appveyor/test_task.bat
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,10 @@ mkdir c:\tests_tmp

set TEST_PHP_JUNIT=c:\junit.out.xml

set SKIP_SLOW_TESTS=1

cd "%APPVEYOR_BUILD_FOLDER%"
nmake test TESTS="%OPCACHE_OPTS% -q --offline --show-diff --show-slow 1000 --set-timeout 120 -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP --temp-source c:\tests_tmp --temp-target c:\tests_tmp"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is the --show-slow dropped here?

It might be interesting to do a run with --show-slow 0 to get a full list of test timings, including the "fast" ones (which are probably comparatively slow on AppVeyor).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I've mistankenly assumed that --show-slow is only about slow tests.

Anyhow, it seems skipping the slow tests saves quite some time.

nmake test TESTS="%OPCACHE_OPTS% -q --offline --show-diff --show-slow 0 --set-timeout 120 -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP --temp-source c:\tests_tmp --temp-target c:\tests_tmp"

set EXIT_CODE=%errorlevel%

Expand Down