uranusjr commented on issue #47832:
URL: https://github.com/apache/airflow/issues/47832#issuecomment-2728455268

   One the first point… actually maybe we can make this work? Pytest does.
   
   ```python
   import pytest
   
   @pytest.fixture
   def a():
       return None
   
   def test_a_arg(a=1):
       assert a == 1
   
   def test_a_fix(a):
       assert a is None
   ```
   
   Not unreasonable IMO. I think I’ll do this.


-- 
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: [email protected]

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

Reply via email to