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 5001f0790a Allow 3.x Docker images (#41466)
5001f0790a is described below

commit 5001f0790a8b2436b526f190829d3c355fe642d7
Author: Tzu-ping Chung <[email protected]>
AuthorDate: Wed Aug 14 17:46:55 2024 +0800

    Allow 3.x Docker images (#41466)
    
    * Allow 3.x Docker images
    
    * Remove 2.x case?
    
    Co-authored-by: Jarek Potiuk <[email protected]>
    
    ---------
    
    Co-authored-by: Jarek Potiuk <[email protected]>
---
 docker_tests/test_prod_image.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker_tests/test_prod_image.py b/docker_tests/test_prod_image.py
index 1d7f043b85..46df7f5e35 100644
--- a/docker_tests/test_prod_image.py
+++ b/docker_tests/test_prod_image.py
@@ -68,7 +68,7 @@ class TestCommands:
     def test_airflow_version(self, default_docker_image):
         """Checking 'airflow version' command. It should return zero exit 
code."""
         output = run_airflow_cmd_in_docker(["version"], 
image=default_docker_image)
-        assert "2." in output
+        assert "3." in output
 
     def test_python_version(self, default_docker_image):
         """Checking 'python --version' command. It should return zero exit 
code."""

Reply via email to