From ebd72708b1babc40571f466b5a4e2134b5c471f2 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 (cherry picked from commit 8a5530ee98d3128c9558e8e8e38f9517fb34d7cf) --- tests/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/requirements.txt b/tests/requirements.txt index 12956131c..46e53dbbd 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -5,3 +5,4 @@ pytest==3.6.1 notario>=0.0.13 ansible~=2.6,<2.7 netaddr +mock -- 2.39.5