Skip to content
This repository has been archived by the owner on Dec 25, 2019. It is now read-only.

Commit

Permalink
Add pypy5 to the test matrix and fix a coverage issue
Browse files Browse the repository at this point in the history
  • Loading branch information
NyanKiyoshi committed Sep 16, 2018
1 parent 42d01a8 commit 8005b24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ python:
- "3.5"
- "3.6"
- "pypy3"
- "pypy5"
install:
- pip install codecov pytest-cov
- nvm install 8
Expand Down
2 changes: 1 addition & 1 deletion texrrow/core/utils/environ.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def getenv_or_raise(name, error_message):
except KeyError as exc:
exc_value = KeyError(error_message)
raise_from(exc_value, exc)
raise exc_value
raise exc_value # pragma: no cover


def getenv_int(name, default=None):
Expand Down

0 comments on commit 8005b24

Please sign in to comment.