diff options
-rw-r--r-- | .github/workflows/macos.yml | 5 | ||||
-rw-r--r-- | .github/workflows/ubuntu.yml | 5 |
2 files changed, 6 insertions, 4 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]') diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 71fbdf2ecc..9084f60f26 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -75,8 +75,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]') |