diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-21 01:27:43 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-21 01:27:43 +0000 |
commit | 7fe170442b0ed7001a65fabf0cfe72e405e38da3 (patch) | |
tree | f730443bfbdfc540a873db17d27126a8c62c00f9 | |
parent | fd8275d083583dc67b5f31e425d26751bc78efe7 (diff) | |
download | bundler-7fe170442b0ed7001a65fabf0cfe72e405e38da3.tar.gz |
.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.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 02c0b84c6d..eaabafd6e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -169,7 +169,8 @@ matrix: 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 |