mik-laj commented on a change in pull request #20386:
URL: https://github.com/apache/airflow/pull/20386#discussion_r775209805
##########
File path: tests/utils/test_process_utils.py
##########
@@ -97,6 +97,10 @@ def test_reap_process_group(self):
class TestExecuteInSubProcess(unittest.TestCase):
+ @pytest.fixture(autouse=True)
+ def _tmp_path(self, tmp_path):
+ self.tmp_path = tmp_path
Review comment:
Why is this added to all tests in this class? I guess this will only be
used in one method so we can do it at method level.
--
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]