Skip to content

Commit 0190093

Browse files
committed
Backport updating test deps (#745)
* Update pinned versions of testing dependencies * Pin version of coverage
1 parent a479d7f commit 0190093

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,16 @@
3131

3232
tests_require = [
3333
'mock~=2.0',
34-
'pytest~=4.3',
34+
'pytest~=5.3',
3535
'pytest-timeout~=1.3',
36-
'pytest-cov~=2.6',
36+
'pytest-cov~=2.8',
37+
# coveragepy==5.0 fails with `Safety level may not be changed inside a transaction`
38+
# on python 3.6 on MACOS
39+
'coverage<5',
3740
'codecov~=2.0',
3841
'future',
3942
'six',
40-
'hypothesis'
43+
'hypothesis~=4.56'
4144
] + extras_require['serial']
4245

4346
extras_require['test'] = tests_require

0 commit comments

Comments
 (0)