[前][次][番号順一覧][スレッド一覧]

ruby-changes:57530

From: Kazuhiro <ko1@a...>
Date: Wed, 4 Sep 2019 12:52:01 +0900 (JST)
Subject: [ruby-changes:57530] ccad34f453 (master): Add TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest

https://git.ruby-lang.org/ruby.git/commit/?id=ccad34f453

From ccad34f4533ffe532fea796def06808dc5a85877 Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Wed, 4 Sep 2019 12:51:39 +0900
Subject: Add TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest


diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index a2ef459..21804ab 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -47,7 +47,8 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L47
         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 69d2524..26d4398 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -50,7 +50,8 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L50
         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
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]