From 7b3c5fdb2400b5334c13fde5e0f7f524872dba0f Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 8 Nov 2018 16:01:55 -0500 Subject: [PATCH] Add 'mock' to unit test dependencies for autogen libs. (#6402) In anticipation of landing https://github.com/googleapis/gapic-generator/pull/2407. --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 91e7f5d4..1bcaad3f 100644 --- a/noxfile.py +++ b/noxfile.py @@ -27,7 +27,7 @@ def default(session): # Install all test dependencies, then install this package in-place. - session.install('pytest') + session.install('pytest', 'mock') for local_dep in LOCAL_DEPS: session.install('-e', local_dep) session.install('-e', '.')