We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6163b79 commit 133d6e3Copy full SHA for 133d6e3
1 file changed
tests/integration/conftest.py
@@ -226,12 +226,9 @@ def pytest_generate_tests(metafunc):
226
if run_kind:
227
backends.append("kind")
228
229
- # Default to remote if no other backend is specified
230
- if not backends:
231
- backends.append("remote")
232
-
233
# Apply the parametrization
234
- metafunc.parametrize("app_setup", backends, indirect=True)
+ if backends or is_kind_only:
+ metafunc.parametrize("app_setup", backends, indirect=True)
235
236
237
@fixture(scope="session")
0 commit comments