Replace usage of mock with unittest.mock (#1054)

Since Python 3, the mock dependency is no more required as
it is already part of the unittest module.
This commit is contained in:
Mickaël Schoentgen
2021-04-30 15:08:27 +02:00
committed by GitHub
parent 611bcdaab1
commit 1274d869f6
9 changed files with 7 additions and 9 deletions

View File

@ -34,7 +34,6 @@ class PyTest(TestCommand):
tests_require = [
'pytest-httpbin',
'pytest',
'mock',
]