diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-03-03 01:54:54 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-03-03 01:54:54 +0000 |
commit | 71dfa492ac378ea44dbd06083639c2d0ab980932 (patch) | |
tree | 875361b310291c06e23792670906c0314878608d /.travis.yml | |
parent | 120518576e21fc9597087f9ef756ccb8517ec4ac (diff) | |
download | ruby-71dfa492ac378ea44dbd06083639c2d0ab980932.tar.gz |
.travis.yml: suppress travis specific failure
* .travis.yml (before_script): suppress the failure which happens
only in travis OSX for the time being.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49814 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index db3b86e5bd..9c17d76704 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,6 +61,7 @@ before_script: - "make -s $JOBS encs" - "make -s $JOBS exts" - "make update-rubyspec" + - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then echo 'exclude :test_deadlock_by_signal_at_forking, \"under investigation\"' >> test/excludes/TestProcess.rb; fi" script: - "make test" - "make test-all TESTS='-q -j2'" |