jroachgolf84 opened a new pull request, #58265: URL: https://github.com/apache/airflow/pull/58265
## Description Updating the docs to properly reflect the path that should be passed when running specific Task SDK integration tests. Per the previous docs, a command like (`breeze testing task-sdk-integration-tests task_sdk_tests/test_variable_operations.py`) this should execute tests in the `test_variable_operations.py` file. However, running this command resulted in the exception: `ERROR: file or directory not found: task_sdk_tests/test_variable_operations.py`. Adding `tests/` in front of `task_sdk_tests/...` solved this issue. The updated command looks something like this: ``` breeze testing task-sdk-integration-tests tests/task_sdk_tests/test_variable_operations.py ``` The appropriate changes in the documentation were made to reflect 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]
