potiuk commented on PR #58265:
URL: https://github.com/apache/airflow/pull/58265#issuecomment-3527818367
Particularly the second one (which I noticed yesterday as well) was fixed by:
```
all_tests = [test_path.as_posix()]
# Always with color and -s to see print outputs as they come
pytest_args = ["--color=yes", "-s"]
if not any(pytest_arg.startswith("tests/") for pytest_arg in
extra_pytest_args):
# Only add all tests when no tests were specified on the command line
pytest_args.extend(all_tests)
else:
pytest_args.extend(extra_pytest_args)
```
--
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]