-
Notifications
You must be signed in to change notification settings - Fork 14.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve Code Coverage for Airflow #35127
Comments
This commit adds missing tests for the DAG endpoint to improve the coverage. Related: apache#35127
This commit adds missing tests for the DAG endpoint to improve the coverage. Related: #35127
Hey @ephraimbuddy - I added a comment in the issue description.
|
This commit adds missing tests for the DAG endpoint to improve the coverage. Related: apache/airflow#35127 GitOrigin-RevId: 9645786ad30529986447661ca7357398559fd3fa
This commit adds missing tests for the DAG endpoint to improve the coverage. Related: apache/airflow#35127 GitOrigin-RevId: 9645786ad30529986447661ca7357398559fd3fa
This commit adds missing tests for the DAG endpoint to improve the coverage. Related: apache/airflow#35127 GitOrigin-RevId: 9645786ad30529986447661ca7357398559fd3fa
@ephraimbuddy I am trying to generate the coverage report on my local and following the instructions but can't see anything load on the UI. Can you please let me know if I am doing something wrong? ![]() ![]() As far as I see, the webserver logs are fine:
|
Can you try and fix the view @kunaljubce. The old UI where we had the view is gone, and there's a new one now |
Description
Airflow code coverage is currently at an impressive 84% but we would like to improve the code coverage and get to at least 95%.
This is a call to help improve the code coverage by adding the missing tests.
You can use the code coverage tool to find modules to improve. Here is the link to the documentation: https://github.com/apache/airflow/blob/main/contributing-docs/testing/unit_tests.rst#code-coverage
Below is how you can discover modules to work on, follow the above link for up-to-date instruction:
Core:
python scripts/cov/core_coverage.py
REST API:
python scripts/cov/restapi_coverage.py
CLI:
python scripts/cov/cli_coverage.py
Webserver:
python scripts/cov/www_coverage.py
After execution, the coverage report will be available at: http://localhost:28000/dev/coverage/index.html.
Note
In order to see the coverage report, you must start webserver first in breeze environment via
airflow webserver
. Once you enter breeze, you can starttmux
(terminal multiplexer) and split the terminal (by pressingctrl-B "
for example) to continue testing and run the webserver in one terminal and run tests in the second one (you can switch between the terminals withctrl-B <arrow>
).PRs should be per module or related codebase
UPDATE (added by @potiuk )
Also you might want to have a look at #35442 - we had a "project structure" test that was supposed to detect modules that do not have corresponding tests and fail our build in this case. This test has been however broken for a long time and we have many missing modules on the list.
The text was updated successfully, but these errors were encountered: