summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2019-09-29 12:18:49 +0200
committerBenoit Daloze <eregontp@gmail.com>2019-09-29 13:57:54 +0200
commitd090e449ef4e92b2020e51fe495cd039e4f6fdda (patch)
treed49702b3edb71958bd1623c6d1df01688beee6e6 /.github/workflows/macos.yml
parente3b11566bfbb6ddcdd9f3483a6bdeb501a610fa9 (diff)
Exclude the test-unit bundled gem tests since they also fail since the Time#inspect change
* See https://github.com/test-unit/test-unit/issues/165
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2503
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 6911f87385..51a6008c4d 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -47,8 +47,9 @@ jobs:
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
- name: Tests (test-bundled-gems)
- # Remove TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest if https://github.com/seattlerb/minitest/pull/798 resolved
- run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
+ # Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
+ # Remove test-unit from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/test-unit/test-unit/issues/165 is resolved
+ run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest,test-unit
env:
RUBY_TESTOPTS: "-q --tty=no"
if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')