Skip to content

Commit

Permalink
Merge pull request #297 from eriknw/better_curry_introspection
Browse files Browse the repository at this point in the history
Better curry introspection
  • Loading branch information
eriknw committed Apr 10, 2016
2 parents 91e71d0 + fd77029 commit 31d64f0
Show file tree
Hide file tree
Showing 9 changed files with 1,414 additions and 65 deletions.
5 changes: 5 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ omit =
toolz/tests/test*
toolz/*/tests/test*
toolz/compatibility.py

[report]
exclude_lines =
pragma: no cover
pragma: py$MAJOR_PYTHON_VERSION no cover
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ python:
- "3.4"
- "3.5"
- "pypy"
- "pypy3"

env:
- PEP8_IGNORE="E731,W503"
- PEP8_IGNORE="E731,W503,E402"

# command to install dependencies
install:
Expand All @@ -20,6 +19,7 @@ install:
# require 100% coverage (not including test files) to pass Travis CI test
# To skip pypy: - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then DOSTUFF ; fi
script:
- export MAJOR_PYTHON_VERSION=`echo $TRAVIS_PYTHON_VERSION | cut -c 1`
- coverage run --source=toolz $(which nosetests)
--with-doctest
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage report --show-missing --fail-under=100 ; fi
Expand Down

0 comments on commit 31d64f0

Please sign in to comment.