You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Tests to execute when updating snapshots for a new Lambda runtime"""
78
+
k8s_always_run=pytest.mark.k8s_always_run
79
+
"""This tests will always run against k8s environment"""
78
80
79
81
80
82
# pytest plugin
@@ -226,3 +228,7 @@ def pytest_configure(config):
226
228
"markers",
227
229
"requires_in_process: mark the test as requiring the test to run inside the same process as LocalStack - will not work if tests are run against a running LS container.",
228
230
)
231
+
config.addinivalue_line(
232
+
"markers",
233
+
"k8s_always_run: mark the test to always run in k8s environment. This allows us to run tests that would otherwise be skipped, such as localstack_only tests.",
0 commit comments