Skip to content

Commit 125d035

Browse files
committed
BLD: Add Hypothesis to build system
1 parent 475e391 commit 125d035

15 files changed

+16
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ dist
6262
coverage.xml
6363
coverage_html_report
6464
*.pytest_cache
65+
# hypothesis test database
66+
.hypothesis/
6567

6668
# OS generated files #
6769
######################

ci/appveyor-27.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ dependencies:
2828
- pytest
2929
- pytest-xdist
3030
- moto
31+
- hypothesis>=3.67.0

ci/appveyor-36.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ dependencies:
2525
- cython>=0.28.2
2626
- pytest
2727
- pytest-xdist
28+
- hypothesis>=3.67.0

ci/circle-27-compat.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies:
2222
# universal
2323
- pytest
2424
- pytest-xdist
25+
- hypothesis>=3.67.0
2526
- pip:
2627
- html5lib==1.0b2
2728
- beautifulsoup4==4.2.1

ci/circle-35-ascii.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ dependencies:
1111
# universal
1212
- pytest
1313
- pytest-xdist
14+
- hypothesis>=3.67.0

ci/circle-36-locale.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ dependencies:
3131
- pytest
3232
- pytest-xdist
3333
- moto
34+
- hypothesis>=3.67.0

ci/circle-36-locale_slow.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ dependencies:
3232
- pytest
3333
- pytest-xdist
3434
- moto
35+
- hypothesis>=3.67.0

ci/environment-dev.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ dependencies:
77
- NumPy
88
- flake8
99
- flake8-comprehensions
10+
- hypothesis>=3.67.0
1011
- moto
1112
- pytest>=3.1
1213
- python-dateutil>=2.5.0

ci/requirements_dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Cython>=0.28.2
44
NumPy
55
flake8
66
flake8-comprehensions
7+
hypothesis>=3.67.0
78
moto
89
pytest>=3.1
910
python-dateutil>=2.5.0

ci/travis-27-locale.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies:
2222
# universal
2323
- pytest
2424
- pytest-xdist
25+
- hypothesis>=3.67.0
2526
- pip:
2627
- html5lib==1.0b2
2728
- beautifulsoup4==4.2.1

ci/travis-27.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ dependencies:
4444
- pytest
4545
- pytest-xdist
4646
- moto
47+
- hypothesis>=3.67.0
4748
- pip:
4849
- backports.lzma
4950
- cpplint

ci/travis-35-osx.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ dependencies:
2323
# universal
2424
- pytest
2525
- pytest-xdist
26+
- hypothesis>=3.67.0
2627
- pip:
2728
- python-dateutil==2.5.3

ci/travis-36-slow.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ dependencies:
2828
- pytest
2929
- pytest-xdist
3030
- moto
31+
- hypothesis>=3.67.0

ci/travis-36.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ dependencies:
4141
- pytest-xdist
4242
- pytest-cov
4343
- moto
44+
- hypothesis>=3.67.0
4445
- pip:
4546
- brotlipy
4647
- coverage

ci/travis-37.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ dependencies:
1212
- pytz
1313
- pytest
1414
- pytest-xdist
15+
- hypothesis>=3.67.0

0 commit comments

Comments
 (0)