Skip to content

Commit b96ec93

Browse files
author
Jon Wayne Parrott
committed
Fixing pytest discovery
Change-Id: I6d882932f341080118e343a27b78df90f356c24e
1 parent 54f1947 commit b96ec93

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

nox.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ def _setup_appengine_sdk(session):
133133

134134

135135
PYTEST_COMMON_ARGS = [
136-
'-v', '--no-success-flaky-report', '--cov',
137-
'--cov-config', os.path.abspath('.coveragerc'), '--cov-append',
138-
'--cov-report', 'term', '--ignore', 'env', '--ignore', 'lib']
136+
'--cov',
137+
'--cov-config', os.path.abspath('.coveragerc'),
138+
'--cov-report', 'term']
139139

140140
FLAKE8_COMMON_ARGS = [
141141
'--show-source', '--builtin', 'gettext', '--max-complexity', '15',

pytest.ini

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[pytest]
2+
addopts =
3+
-v
4+
--no-success-flaky-report
5+
norecursedirs = .git env lib .tox .nox

0 commit comments

Comments
 (0)