From df873e5c0382a3469314ffcd8723ce25d1d72dcf Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Thu, 30 Mar 2017 11:52:04 -0700 Subject: [PATCH] Fixing a syntax error in nox config for logging. Also fixing an indent error while I was in there. --- logging/nox.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/logging/nox.py b/logging/nox.py index 653f19427418..20eb67d44199 100644 --- a/logging/nox.py +++ b/logging/nox.py @@ -35,7 +35,8 @@ def unit_tests(session, python_version): session.install('-e', '.') # Run py.test against the unit tests. - session.run('py.test', '--quiet', + session.run( + 'py.test', '--quiet', '--cov=google.cloud.logging', '--cov=tests.unit', '--cov-append', '--cov-config=.coveragerc', '--cov-report=', '--cov-fail-under=97', 'tests/unit', @@ -56,7 +57,7 @@ def system_tests(session, python_version): # Install all test dependencies, then install this package into the # virutalenv's dist-packages. - session.install('mock', 'pytest', *LOCAL_DEPS + session.install('mock', 'pytest', *LOCAL_DEPS) session.install('../test_utils/', '../bigquery/', '../pubsub/', '../storage/') session.install('.')