File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change
1
+ dist : trusty
1
2
language : python
2
3
python :
3
4
- " 2.6"
@@ -12,6 +13,8 @@ matrix:
12
13
include :
13
14
- python : " 3.7"
14
15
dist : xenial
16
+ - python : " 3.8"
17
+ dist : xenial
15
18
before_install :
16
19
- pip install codecov
17
20
install :
@@ -22,6 +25,6 @@ install:
22
25
- pip install dist/*.whl
23
26
script :
24
27
- cd tests/ && nosetests --with-coverage --cover-package jmespath .
25
- - 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
26
29
after_success :
27
30
- codecov
Original file line number Diff line number Diff line change 32
32
MAX_EXAMPLES = int (os .environ .get ('JP_MAX_EXAMPLES' , 1000 ))
33
33
BASE_SETTINGS = {
34
34
'max_examples' : MAX_EXAMPLES ,
35
- 'suppress_health_check' : [HealthCheck .too_slow ],
35
+ 'suppress_health_check' : [HealthCheck .too_slow ,
36
+ HealthCheck .filter_too_much ,
37
+ HealthCheck .data_too_large ],
36
38
}
37
39
38
40
Original file line number Diff line number Diff line change @@ -2,5 +2,7 @@ nose==1.2.1
2
2
py == 1.4.12
3
3
tox == 1.4.2
4
4
wheel == 0.24.0
5
- coverage == 3.7.1
6
- hypothesis == 3.1.0
5
+ coverage == 5.0.3 ; python_version == '3.8'
6
+ coverage == 3.7.1 ; python_version != '3.8'
7
+ hypothesis == 3.1.0 ; python_version != '3.8'
8
+ hypothesis == 5.5.4 ; python_version == '3.8'
You can’t perform that action at this time.
0 commit comments