File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
airbyte-ci/connectors/pipelines Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ shell = "pyinstaller --additional-hooks-dir=pyinstaller_hooks --collect-all pipe
57
57
args = [{name = " ARTIFACT_NAME" , default =" airbyte-ci" , positional = true }]
58
58
59
59
[tool .poe .tasks ]
60
- test = " pytest tests"
60
+ test = " pytest tests -m 'not flaky' "
61
61
type_check = " mypy pipelines --disallow-untyped-defs"
62
62
lint = " ruff check pipelines"
63
63
Original file line number Diff line number Diff line change 2
2
addopts = --cov =pipelines
3
3
markers =
4
4
slow: marks tests as slow (deselect with ' -m "not slow"' )
5
+ flaky: marks tests as flaky (deselect with ' -m "not flaky"' )
Original file line number Diff line number Diff line change @@ -193,6 +193,10 @@ async def test_cat_container_provisioning(
193
193
env_vars = {await env_var .name (): await env_var .value () for env_var in await cat_container .env_variables ()}
194
194
assert "CACHEBUSTER" in env_vars
195
195
196
+ @pytest .mark .flaky
197
+ # This test has shown some flakiness in CI
198
+ # This should be investigated and fixed
199
+ # https://github.com/airbytehq/airbyte-internal-issues/issues/6304
196
200
async def test_cat_container_caching (
197
201
self ,
198
202
dagger_client ,
You can’t perform that action at this time.
0 commit comments