Is your feature request related to a problem? Please describe.
Currently we expect the mock module to be installed as a dependency.
Since Python 3.x it is part of the standard library.
We can reduce dependencies to external packages through this.
Describe the solution you'd like
Remove mock from requirements-tests.txt.
Replace import mock with import unittest.mock as mock
Additional context
We do not use any special features that require a newer version of mock.
Is your feature request related to a problem? Please describe.
Currently we expect the mock module to be installed as a dependency. Since Python 3.x it is part of the standard library. We can reduce dependencies to external packages through this.
Describe the solution you'd like
Remove
mock
fromrequirements-tests.txt
. Replaceimport mock
withimport unittest.mock as mock
Additional context We do not use any special features that require a newer version of mock.