kaxil commented on pull request #15117:
URL: https://github.com/apache/airflow/pull/15117#issuecomment-814933097


   > What are quarantined tests, and how do I read logs for their failures? I 
can see some of them are failing (in `test_views.py` and 
`test_local_task_jobs.py`), but can’t find what tests exactly and why.
   
   Quarantined test failures can be ignored, they are mostly flaky tests, docs 
for it are here: 
https://github.com/apache/airflow/blob/master/TESTING.rst#quarantined-tests
   
   Some of our tests are quarantined. This means that this test will be run in 
isolation and that it will be re-run several times. Also when quarantined tests 
fail, the whole test suite will not fail. The quarantined tests are usually 
**flaky tests** that need some attention and fix.
   
   Those tests are marked with @pytest.mark.quarantined annotation. Those tests 
are skipped by default. You can enable them with --include-quarantined flag. 
You can also decide to only run tests with -m quarantined flag to run only 
those tests.


-- 
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to