Skip to content
This repository was archived by the owner on Jul 11, 2022. It is now read-only.

Unpin test dependencies #308

Merged
merged 2 commits into from
May 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Unpin test dependencies
Signed-off-by: Yuri Shkuro <github@ysh.us>
yurishkuro committed May 15, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 1d7ffb209a275337b9f93c2d308f4b5d088c1261
16 changes: 7 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -48,16 +48,14 @@
test_suite='tests',
extras_require={
'tests': [
'mock==1.0.1',
'pycurl>=7.43,<8',
# pinned to avoid RemovedInPytest4Warning
'pytest>=3.7.0,<3.8.0',
'pytest-cov==2.5.1',
'coverage<4.4', # can remove after https://bitbucket.org/ned/coveragepy/issues/581/44b1-44-breaking-in-ci
'pytest-timeout==1.3.1',
'mock',
'pycurl',
'pytest',
'pytest-cov',
'coverage',
'pytest-timeout',
'pytest-tornado',
# pin <3.2 as otherwise it requires pytest>=3.8
'pytest-benchmark[histogram]>=3.0.0rc1,<3.2',
'pytest-benchmark[histogram]',
'pytest-localserver',
'flake8',
'flake8-quotes',