ruby-changes:58011
From: Benoit <ko1@a...>
Date: Sun, 29 Sep 2019 20:58:14 +0900 (JST)
Subject: [ruby-changes:58011] d090e449ef (master): Exclude the test-unit bundled gem tests since they also fail since the Time#inspect change
https://git.ruby-lang.org/ruby.git/commit/?id=d090e449ef From d090e449ef4e92b2020e51fe495cd039e4f6fdda Mon Sep 17 00:00:00 2001 From: Benoit Daloze <eregontp@g...> Date: Sun, 29 Sep 2019 12:18:49 +0200 Subject: 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 diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 6911f87..51a6008 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -47,8 +47,9 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L47 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 71fbdf2..9084f60 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -75,8 +75,9 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L75 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]') -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/