ruby-changes:53047
From: k0kubun <ko1@a...>
Date: Sun, 21 Oct 2018 10:27:51 +0900 (JST)
Subject: [ruby-changes:53047] k0kubun:r65261 (trunk): .travis.yml: mspec -j is unstable
k0kubun 2018-10-21 10:27:43 +0900 (Sun, 21 Oct 2018) New Revision: 65261 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65261 Log: .travis.yml: mspec -j is unstable https://travis-ci.org/ruby/ruby/jobs/444232677 Instead of that, add -fs to know problematic test case when failed. Modified files: trunk/.travis.yml Index: .travis.yml =================================================================== --- .travis.yml (revision 65260) +++ .travis.yml (revision 65261) @@ -169,7 +169,8 @@ matrix: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L169 before_install: install: before_script: chmod -R u+w spec/ruby - script: ruby -C spec/ruby ../mspec/bin/mspec -j . + # -j randomly hangs. Using -fs to make sure we can know problematic spec on failure. + script: ruby -C spec/ruby ../mspec/bin/mspec -fs . allow_failures: - name: pedanticism fast_finish: true -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/