Merge pull request #7165 from hartwork/setup-py-add-missing-test-dependency-ddt

Add missing test dependency ddt to setup.py
This commit is contained in:
Ulysses Souza 2020-01-27 15:06:33 +01:00 committed by GitHub
commit 73551d5a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,7 @@ install_requires = [
tests_require = [ tests_require = [
'ddt >= 1.2.2, < 2',
'pytest < 6', 'pytest < 6',
] ]
@ -59,6 +60,7 @@ extras_require = {
'ipaddress >= 1.0.16, < 2'], 'ipaddress >= 1.0.16, < 2'],
':sys_platform == "win32"': ['colorama >= 0.4, < 1'], ':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'], 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
'tests': tests_require,
} }