Adds missing test dependency to certifi.

This commit is contained in:
Olivier Mangin 2019-01-14 22:47:38 -08:00
parent fbc9b94f8d
commit 52378d0903
No known key found for this signature in database
GPG Key ID: D72FEC1C3120A884
2 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ six
# those are the additional packages required to run the tests # those are the additional packages required to run the tests
pyfakefs pyfakefs
certifi
ddt ddt
mock mock
pytest # optional (python setup.py test works without it), but possible nonetheless pytest # optional (python setup.py test works without it), but possible nonetheless

View File

@ -60,7 +60,7 @@ setup(
], ],
test_suite='tests', test_suite='tests',
tests_require=['pyfakefs>=3.4', 'mock', 'ddt'], tests_require=['pyfakefs>=3.4', 'mock', 'ddt', 'certifi'],
# in order to avoid 'zipimport.ZipImportError: bad local file header' # in order to avoid 'zipimport.ZipImportError: bad local file header'
zip_safe=False, zip_safe=False,