We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d93c972 commit db15948Copy full SHA for db15948
packages/google-cloud-storage/noxfile.py
@@ -176,7 +176,18 @@ def unit(session):
176
177
178
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
179
-def system(session):
+@nox.parametrize(
180
+ "test_type",
181
+ ["system", "conformance", "conformance_bidi"],
182
+)
183
+def system(session, test_type):
184
+ if test_type == "conformance":
185
+ conftest_retry(session)
186
+ return
187
+ if test_type == "conformance_bidi":
188
+ conftest_retry_bidi(session)
189
190
+
191
constraints_path = str(
192
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
193
)
0 commit comments