summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-04 12:51:39 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-04 12:51:39 +0900
commitccad34f4533ffe532fea796def06808dc5a85877 (patch)
treeffb4b4793f1ae8ccbb7a29ad1bbff4c8fc19c980 /.github
parent967ef0d4f6c84b5c204247a8a960656d6264ef49 (diff)
Add TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml3
-rw-r--r--.github/workflows/ubuntu.yml3
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index a2ef459cb4..21804ab0be 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -47,7 +47,8 @@ jobs:
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
- name: Tests
- run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
+ # Remove TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest if https://github.com/seattlerb/minitest/pull/798 resolved
+ run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no" TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
continue-on-error: true
if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
- name: Leaked Globals
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 69d2524e98..26d439840e 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -50,7 +50,8 @@ jobs:
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
- name: Tests (test-bundled-gems)
- run: make -s ${{ matrix.test_task }}
+ # 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
env:
RUBY_TESTOPTS: "-q --tty=no"
continue-on-error: true