From 8a5530ee98d3128c9558e8e8e38f9517fb34d7cf Mon Sep 17 00:00:00 2001 From: Noah Watkins Date: Wed, 16 Jan 2019 15:50:23 -0800 Subject: [PATCH] test: add missing test dependency [nwatkins@smash ceph-ansible]$ virtualenv env [nwatkins@smash ceph-ansible]$ env/bin/pip install -r tests/requirements.txt [nwatkins@smash ceph-ansible]$ env/bin/python -c "import mock" Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'mock' Signed-off-by: Noah Watkins --- tests/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/requirements.txt b/tests/requirements.txt index 0e9c9e99d..af4674c3f 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -6,3 +6,4 @@ pytest==3.6.1 notario>=0.0.13 ansible~=2.7,<2.8 netaddr +mock