Skip to content

Commit

Permalink
The step should not fail when isolated tests
Browse files Browse the repository at this point in the history
do not exist
  • Loading branch information
k0kubun committed Apr 23, 2019
1 parent bc8e549 commit 82ef172
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,8 +384,9 @@ script:
- $SETARCH make -s test TESTOPTS="${TESTOPTS=$JOBS -q --tty=no}"
- travis_wait 40 $SETARCH make -s test-all -o exts TESTOPTS="${TEST_ALL_OPTS=$TESTOPTS}" RUBYOPT="-w"
- |-
[ -n "${TEST_ALL_ISOLATED_TESTS}" ] &&
$SETARCH make -s test-all -o exts TESTS="$TEST_ALL_ISOLATED_TESTS" RUBYOPT="-w"
if [ -n "${TEST_ALL_ISOLATED_TESTS}" ]; then
$SETARCH make -s test-all -o exts TESTS="$TEST_ALL_ISOLATED_TESTS" RUBYOPT="-w"
fi
- $SETARCH make -s test-spec MSPECOPT=-ff # not using `-j` because sometimes `mspec -j` silently dies

# Branch matrix. Not all branches are Travis-ready so we limit branches here.
Expand Down

0 comments on commit 82ef172

Please sign in to comment.