uranusjr commented on PR #29929: URL: https://github.com/apache/airflow/pull/29929#issuecomment-1558971454
When a function is decorated with, `cache`, it is only executed exactly once, and later calls automatically re-uses the previous result. This means that after the first test (whichever that is) is run, the other test would receive the wrong, cached result. You need to clear the cache. Search for `cache_clear()` in the tests directory for examples. -- 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]
