Skip to content

Commit 1b73e05

Browse files
authored
Merge pull request #3030 from HypothesisWorks/create-pull-request/patch
Update pinned dependencies
2 parents 720a86d + 22415bb commit 1b73e05

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

hypothesis-python/RELEASE.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
RELEASE_TYPE: patch
2+
3+
This patch ensures that we shorten tracebacks for tests which fail due
4+
to inconsistent data generation between runs (i.e. raise ``Flaky``).

hypothesis-python/src/hypothesis/errors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#
1414
# END HEADER
1515

16-
1716
class HypothesisException(Exception):
1817
"""Generic parent class for exceptions thrown by Hypothesis."""
1918

hypothesis-python/src/hypothesis/executors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#
1414
# END HEADER
1515

16-
1716
def default_executor(function): # pragma: nocover
1817
raise NotImplementedError() # We don't actually use this any more
1918

hypothesis-python/src/hypothesis/internal/escalation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import hypothesis
2424
from hypothesis.errors import (
2525
DeadlineExceeded,
26+
Flaky,
2627
HypothesisException,
2728
MultipleFailures,
2829
StopTest,
@@ -91,7 +92,7 @@ def get_trimmed_traceback(exception=None):
9192
# was raised inside Hypothesis (and is not a MultipleFailures)
9293
if hypothesis.settings.default.verbosity >= hypothesis.Verbosity.debug or (
9394
is_hypothesis_file(traceback.extract_tb(tb)[-1][0])
94-
and not isinstance(exception, MultipleFailures)
95+
and not isinstance(exception, (Flaky, MultipleFailures))
9596
):
9697
return tb
9798
while tb is not None and (

hypothesis-python/src/hypothesis/internal/intervalsets.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#
1414
# END HEADER
1515

16-
1716
class IntervalSet:
1817
def __init__(self, intervals):
1918
self.intervals = tuple(intervals)

hypothesis-python/src/hypothesis/internal/lazyformat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#
1414
# END HEADER
1515

16-
1716
class lazyformat:
1817
"""A format string that isn't evaluated until it's needed."""
1918

hypothesis-python/src/hypothesis/utils/conventions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#
1414
# END HEADER
1515

16-
1716
class UniqueIdentifier:
1817
"""A factory for sentinel objects with nice reprs."""
1918

requirements/coverage.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ numpy==1.21.0
1414
# via
1515
# -r requirements/coverage.in
1616
# pandas
17-
pandas==1.2.5
17+
pandas==1.3.0
1818
# via -r requirements/coverage.in
1919
python-dateutil==2.8.1
2020
# via pandas

requirements/tools.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ bleach==3.3.0
3535
# via readme-renderer
3636
certifi==2021.5.30
3737
# via requests
38-
cffi==1.14.5
38+
cffi==1.14.6
3939
# via cryptography
4040
chardet==4.0.0
4141
# via requests
@@ -107,7 +107,7 @@ idna==2.10
107107
# via requests
108108
imagesize==1.2.0
109109
# via sphinx
110-
importlib-metadata==4.6.0
110+
importlib-metadata==4.6.1
111111
# via
112112
# keyring
113113
# twine
@@ -117,11 +117,11 @@ ipython==7.16.1
117117
# via -r requirements/tools.in
118118
ipython-genutils==0.2.0
119119
# via traitlets
120-
isort==5.9.1
120+
isort==5.9.2
121121
# via shed
122122
jedi==0.18.0
123123
# via ipython
124-
jeepney==0.6.0
124+
jeepney==0.7.0
125125
# via
126126
# keyring
127127
# secretstorage
@@ -167,7 +167,7 @@ pickleshare==0.7.5
167167
# via ipython
168168
pip-tools==6.2.0
169169
# via -r requirements/tools.in
170-
pkginfo==1.7.0
170+
pkginfo==1.7.1
171171
# via twine
172172
pluggy==0.13.1
173173
# via
@@ -213,15 +213,15 @@ pytz==2021.1
213213
# via
214214
# babel
215215
# django
216-
pyupgrade==2.20.0
216+
pyupgrade==2.21.0
217217
# via shed
218218
pyyaml==5.4.1
219219
# via
220220
# bandit
221221
# libcst
222222
readme-renderer==29.0
223223
# via twine
224-
regex==2021.7.1
224+
regex==2021.7.6
225225
# via black
226226
requests==2.25.1
227227
# via
@@ -256,7 +256,7 @@ snowballstemmer==2.1.0
256256
# sphinx
257257
sortedcontainers==2.4.0
258258
# via hypothesis (hypothesis-python/setup.py)
259-
sphinx==4.0.2
259+
sphinx==4.0.3
260260
# via
261261
# -r requirements/tools.in
262262
# sphinx-rtd-theme
@@ -294,7 +294,7 @@ toml==0.10.2
294294
# tox
295295
tox==3.23.1
296296
# via -r requirements/tools.in
297-
tqdm==4.61.1
297+
tqdm==4.61.2
298298
# via twine
299299
traitlets==4.3.3
300300
# via

0 commit comments

Comments
 (0)