Skip to content

Commit

Permalink
Fixing a syntax error in nox config for logging.
Browse files Browse the repository at this point in the history
Also fixing an indent error while I was in there.
  • Loading branch information
dhermes committed Mar 30, 2017
1 parent 76ffb5b commit df873e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions logging/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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('.')
Expand Down

0 comments on commit df873e5

Please sign in to comment.