We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b53a87 commit 2023b10Copy full SHA for 2023b10
1 file changed
packages/django-google-spanner/noxfile.py
@@ -118,21 +118,21 @@ def default(session):
118
session.install(
119
*UNIT_TEST_STANDARD_DEPENDENCIES,
120
*UNIT_TEST_EXTERNAL_DEPENDENCIES,
121
- *UNIT_TEST_DEPENDENCIES,
+ *UNIT_TEST_MOCKSERVER_DEPENDENCIES,
122
)
123
session.install("-e", ".")
124
125
- # Run py.test against the unit tests.
+ # Run py.test against unit and mockserver tests.
126
session.run(
127
"py.test",
128
"--quiet",
129
"--cov=django_spanner",
130
- "--cov=tests.unit",
131
"--cov-append",
132
"--cov-config=.coveragerc",
133
"--cov-report=",
134
"--cov-fail-under=0",
135
os.path.join("tests", "unit"),
+ os.path.join("tests", "mockserver_tests"),
136
*session.posargs,
137
138
0 commit comments