Skip to content

Commit 75aa8a8

Browse files
committed
Fixing copy-pasta issue in error reporting nox config.
Also fixing bad indent in same file.
1 parent 3d1cf99 commit 75aa8a8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

error_reporting/nox.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ def unit_tests(session, python_version):
3535
session.install('-e', '.')
3636

3737
# Run py.test against the unit tests.
38-
session.run('py.test', '--quiet',
39-
'--cov=google.cloud.datastore', '--cov=tests.unit', '--cov-append',
40-
'--cov-config=.coveragerc', '--cov-report=', '--cov-fail-under=97',
41-
'tests/unit',
38+
session.run(
39+
'py.test', '--quiet', '--cov=google.cloud.error_reporting',
40+
'--cov=tests.unit', '--cov-append', '--cov-config=.coveragerc',
41+
'--cov-report=', '--cov-fail-under=97', 'tests/unit',
4242
)
4343

4444

@@ -52,7 +52,7 @@ def lint(session):
5252
session.interpreter = 'python3.6'
5353
session.install('flake8', *LOCAL_DEPS)
5454
session.install('.')
55-
session.run('flake8', 'google/cloud/datastore')
55+
session.run('flake8', 'google/cloud/error_reporting')
5656

5757

5858
@nox.session

0 commit comments

Comments
 (0)