kaxil commented on a change in pull request #14698:
URL: https://github.com/apache/airflow/pull/14698#discussion_r591600386



##########
File path: tests/www/test_views.py
##########
@@ -2784,7 +2784,38 @@ def test_trigger_dag_form(self):
             ("%2Fgraph%3Fdag_id%3Dexample_bash_operator", 
"/graph?dag_id=example_bash_operator"),
         ]
     )
-    def test_trigger_dag_form_origin_url(self, test_origin, expected_origin):
+    @pytest.mark.skipif(
+        sys.version_info < (3, 8, 8),

Review comment:
       I did not do:
   
   ```python
   sys.version_info <= (3, 8, 7)
   ```
   
   for the following case:
   
   ```python
   ❯ python
   Python 3.7.4 (default, Aug 13 2019, 15:17:50)
   [Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin
   Type "help", "copyright", "credits" or "license" for more information.
   >>> import sys
   >>> sys.version_info == (3, 7, 4, )
   False
   >>> sys.version_info
   sys.version_info(major=3, minor=7, micro=4, releaselevel='final', serial=0)
   >>> sys.version_info == (3, 7, 4, 'final', 0)
   True
   ```




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to