This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 2c6d43944f Quarantine test_cli_run_time (#35001)
2c6d43944f is described below
commit 2c6d43944f5081eabeb896919d63186b52758d40
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Oct 18 00:32:36 2023 +0200
Quarantine test_cli_run_time (#35001)
The test seem to run very slow when run for parallel tests
and we seem to have some very much varying speeds of the VM instances
from Amazon today (test times range between 16 minutes to 35 minutes
which is really worrying).
The test_cli_run_time test started to fail for those "slow" machines.
In order to stabilize the test suite, we temporary quarantine the tests.
The Quarantined tests run in a complete isolation - sequentially, no
matter what machine they run on, no parallel runs are executed. This
should stabilize the test in order to be able to investigate the
cause of the varying speed of test execution.
---
tests/cli/test_cli_parser.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/cli/test_cli_parser.py b/tests/cli/test_cli_parser.py
index 87a7ad8b9e..115c581ccc 100644
--- a/tests/cli/test_cli_parser.py
+++ b/tests/cli/test_cli_parser.py
@@ -342,6 +342,7 @@ class TestCliSubprocess:
than from provider packages which might not be installed in the test
environment.
"""
+ @pytest.mark.quarantined
def test_cli_run_time(self):
setup_code = "import subprocess"
command = [sys.executable, "-m", "airflow", "--help"]