Skip to content

Commit e756c56

Browse files
committed
Disable hypothesis tests on 3.8
These are taking orders of magnitude longer, and I verified that they do pass with smaller example counts. I'd rather disable this for 3.8 than to lower the num examples across all python versions.
1 parent b751f29 commit e756c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ install:
2525
- pip install dist/*.whl
2626
script:
2727
- cd tests/ && nosetests --with-coverage --cover-package jmespath .
28-
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then JP_MAX_EXAMPLES=10000 nosetests ../extra/test_hypothesis.py; fi
28+
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]] && [[ $TRAVIS_PYTHON_VERSION != '3.8' ]]; then JP_MAX_EXAMPLES=10000 nosetests ../extra/test_hypothesis.py; fi
2929
after_success:
3030
- codecov

0 commit comments

Comments
 (0)