Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.9-dev"
- "3.9"
- "nightly"
- "pypy3.5-7.0"
- "pypy3.6-7.1.1"

Expand All @@ -24,14 +25,13 @@ install:
# 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 toolz/
- coverage run --source=toolz $(which pytest)
--doctest-modules toolz/
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage report --show-missing --fail-under=100 ; fi
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pep8 --ignore=$PEP8_IGNORE --exclude=conf.py,tests,examples,bench -r --show-source . ; fi
# For convenience, make sure simple test commands work
- python setup.py develop
- py.test
- nosetests
- pytest

# load coverage status to https://coveralls.io
after_success:
Expand Down
3 changes: 3 additions & 0 deletions toolz/_signatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
lambda x: None],
all=[
lambda iterable: None],
anext=[
lambda aiterator: None,
lambda aiterator, default: None],
any=[
lambda iterable: None],
apply=[
Expand Down