summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNARUSE, Yui <naruse@airemix.jp>2020-12-08 05:45:22 +0900
committerNARUSE, Yui <naruse@airemix.jp>2020-12-08 05:45:22 +0900
commita4f292426b40f9d6c8f3d646e4b7c667313074f2 (patch)
treeb489f0df11e3501c12b89b32f056ce40f6732dea /.github
parent146b3695c0e1ea0d6cf00442d5524f97d8a75296 (diff)
skip failing tests in test-all on mingw
https://bugs.ruby-lang.org/issues/17372
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mingw.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 36c8d747a7..f3a0c9a38b 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -107,7 +107,7 @@ jobs:
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
$jobs = [int](1.5 * $env:NUMBER_OF_PROCESSORS)
- make test-all TESTOPTS="-j $jobs --retry --job-status=normal --show-skip --timeout-scale=1.5"
+ make test-all TESTOPTS="-j $jobs --retry --job-status=normal --show-skip --timeout-scale=1.5" --regexp="!/^(test_to_specs_respects_bundler_version|test_gem_bundler|test_activate_bin_path_gives_proper_error_for_bundler)$/"
- name: test-spec
timeout-minutes: 10