jscheffl commented on code in PR #53431: URL: https://github.com/apache/airflow/pull/53431#discussion_r2216848814
########## providers/standard/tests/unit/standard/operators/test_python.py: ########## @@ -869,6 +869,9 @@ def f(): self.run_as_task(f) def test_string_args(self): + if "Branch" in self.__class__.__name__: + pytest.skip("Test does not work for branching operators") Review Comment: I also _thought_ this is bad but `self` is not working in decorators to skipif()... but yeah masking in subclass is a good idea! Pushed changes. -- 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. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org