Skip to content

Commit

Permalink
Add missing lines to coveragerc, and add 'set +e' to .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tgsmith61591 committed Jan 23, 2018
1 parent e076965 commit 239551d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[report]
show_missing = True

[run]
branch = True
source = pyramid
Expand Down
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ cache:
- $HOME/.cache/pip
- $HOME/.ccache

# we set +e to re-instate the error-tolerant state. The problem is Travis is broken on Mac OS
# builds right now due to Issue 6307 (https://github.com/travis-ci/travis-ci/issues/6307)
# and fails at the end of a successful build. This will allow the build to recover even if
# a non-zero status code is encountered.
before_install:
- set +e
- source build_tools/travis/before_install.sh
env:
global:
Expand Down

0 comments on commit 239551d

Please sign in to comment.