summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2019-09-29 23:43:15 +0200
committerBenoit Daloze <eregontp@gmail.com>2019-09-30 00:16:11 +0200
commit59060aadea28d3a6cd0ebbcc17c10a3628e6e867 (patch)
treef47b816c0f9f89d47b702b1a99c6fb9fb0a95c67 /.github
parent2740b869051f773147bd1e26d7b489eab9037c04 (diff)
Run test-unit tests in CI
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2506
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml3
-rw-r--r--.github/workflows/ubuntu.yml3
2 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 51a6008c4d..339cd97bca 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -48,8 +48,7 @@ jobs:
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
- name: Tests (test-bundled-gems)
# 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
+ run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
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 9084f60f26..03e5645d8f 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -76,8 +76,7 @@ jobs:
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
- name: Tests (test-bundled-gems)
# 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
+ run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
env:
RUBY_TESTOPTS: "-q --tty=no"
if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')