Remove mock as a test requirement and add PyYAML as requirement.

Now that we have moved to py36 and later runtimes, we no longer
need to use the third party mock library and can only use the standard
library unittest.mock instead.

Change-Id: I95d8ddf3b6746d74d98340132b57d5f25d5450c8
Signed-off-by: Gael Chamoulaud (Strider) <gchamoul@redhat.com>
This commit is contained in:
Gael Chamoulaud (Strider) 2020-03-17 11:20:16 +01:00
parent d48b4b7714
commit c7d577790f
No known key found for this signature in database
GPG Key ID: 4119D0305C651D66
3 changed files with 3 additions and 3 deletions

View File

@ -3,3 +3,4 @@
# process, which may cause wedges in the gate later.
pbr>=3.1.1 # Apache-2.0
PyYAML>=3.12 # MIT

View File

@ -6,7 +6,6 @@ openstackdocstheme>=1.20.0 # Apache-2.0
hacking<0.12,>=0.11.0 # Apache-2.0
coverage!=4.4,>=4.0 # Apache-2.0
python-subunit>=1.0.0 # Apache-2.0/BSD
oslotest>=3.2.0 # Apache-2.0
testrepository>=0.0.18 # Apache-2.0/BSD
testscenarios>=0.4 # Apache-2.0/BSD

View File

@ -12,8 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from mock import MagicMock
from mock import patch
from unittest.mock import MagicMock
from unittest.mock import patch
from validations_common.library.check_package_update import check_update
from validations_common.library.check_package_update import get_package_details