Tuple test_requirements was too long, PEP8

Broken a long line into multiple lines inside tuple parenthesis.
This commit is contained in:
juozasget
2018-09-15 13:26:59 +03:00
committed by GitHub
parent c292cabd1f
commit b9dfc95cf2
+8 -1
View File
@@ -54,7 +54,14 @@ requires = [
'certifi>=2017.4.17'
]
test_requirements = ['pytest-httpbin==0.0.7', 'pytest-cov', 'pytest-mock', 'pytest-xdist', 'PySocks>=1.5.6, !=1.5.7', 'pytest>=2.8.0']
test_requirements = [
'pytest-httpbin==0.0.7',
'pytest-cov',
'pytest-mock',
'pytest-xdist',
'PySocks>=1.5.6, !=1.5.7',
'pytest>=2.8.0'
]
about = {}
with open(os.path.join(here, 'requests', '__version__.py'), 'r', 'utf-8') as f: