summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-08-13 15:23:54 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-08-13 15:23:54 +0900
commitefc9127790e2e725541de2c36780a852e6c1382c (patch)
treeb12e2c4dc82b9522aeacfab00b5ac0441a35e35c /.appveyor.yml
parentb56e5c6b9425a19c04d4e59410463155ea9db30c (diff)
Prefix `excludes` with a dot to prevent chkbuild from firing wrongly
Chkbuild runs for each directories just under `test` directory when `test-all` failed. `test/excludes` itself should not be a target.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8214
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index fdab2008e8..ab8ac580ec 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -93,7 +93,7 @@ for:
- nmake -l "TESTOPTS=-v -q" test-basic
- >-
nmake -l "TESTOPTS=-v --timeout-scale=3.0
- --excludes=../test/excludes/_appveyor -j%JOBS%
+ --excludes=../test/.excludes/_appveyor -j%JOBS%
--exclude win32ole
--exclude test_bignum
--exclude test_syntax
@@ -103,7 +103,7 @@ for:
# separately execute tests without -j which may crash worker with -j.
- >-
nmake -l
- "TESTOPTS=--timeout-scale=3.0 --excludes=../test/excludes/_appveyor"
+ "TESTOPTS=--timeout-scale=3.0 --excludes=../test/.excludes/_appveyor"
TESTS="
../test/win32ole
../test/ruby/test_bignum.rb