potiuk commented on PR #53332: URL: https://github.com/apache/airflow/pull/53332#issuecomment-3112567122
> source .venv/bin/activate & uv run python -m pytest task-sdk-tests/tests/task_sdk_tests/test_task_sdk_health.py -s --color=yes FYI when you use uv run, you do not need to activate the venv at all. The `uv run` does it for you and it also syncs the venv according to the local pyproject.toml in your current working environment. So the **right* way of running this is: ```bash cd task-sdk-tests/ uv run pytest ``` I also suggest to enable color by default in pyproject toml :). I can't see a reason why we would not want color. -- 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