diff options
author | Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | 2019-09-04 12:51:39 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | 2019-09-04 12:51:39 +0900 |
commit | ccad34f4533ffe532fea796def06808dc5a85877 (patch) | |
tree | ffb4b4793f1ae8ccbb7a29ad1bbff4c8fc19c980 /.github/workflows/ubuntu.yml | |
parent | 967ef0d4f6c84b5c204247a8a960656d6264ef49 (diff) | |
download | ruby-ccad34f4533ffe532fea796def06808dc5a85877.tar.gz |
Add TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
Diffstat (limited to '.github/workflows/ubuntu.yml')
-rw-r--r-- | .github/workflows/ubuntu.yml | 3 |
1 files changed, 2 insertions, 1 deletions
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 |