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 4857f4a commit 05d94bcCopy full SHA for 05d94bc
test/integration/conftest.py
@@ -112,6 +112,13 @@ def docker_image(docker_base_name, tag):
112
return '{}:{}'.format(docker_base_name, tag)
113
114
115
+@pytest.fixture(autouse=True)
116
+def skip_py2_containers(request, tag):
117
+ if request.node.get_closest_marker('skip_py2_containers'):
118
+ if 'py2' in tag:
119
+ pytest.skip('Skipping python2 container with tag {}'.format(tag))
120
+
121
122
@pytest.fixture
123
def ecr_image(account_id, docker_base_name, tag, region):
124
return '{}.dkr.ecr.{}.amazonaws.com/{}:{}'.format(
0 commit comments