potiuk commented on PR #64810: URL: https://github.com/apache/airflow/pull/64810#issuecomment-4209833835
@Dev-iL 1. airflow-core in Breeze image (MacOS regular Docker Engine): Clear cache (38s): ``` [Breeze:3.10.20] root@ff650e373426:/opt/airflow$ time mypy @/files/mypy_files.txt Success: no issues found in 1095 source files real 0m38.061s user 0m30.375s sys 0m5.214s [Breeze:3.10.20] root@ff650e373426:/opt/airflow$ ``` Full cache (2.79s): ``` [Breeze:3.10.20] root@ff650e373426:/opt/airflow$ time mypy @/files/mypy_files.txt Success: no issues found in 1095 source files real 0m2.795s user 0m1.216s sys 0m1.080s ``` 2. Local Clear cache (10.82 s): ``` time uv run --python 3.10 --project airflow-core --with "apache-airflow-devel-common[mypy]" mypy @files/mypy_files.txt Success: no issues found in 1095 source files uv run --python 3.10 --project airflow-core --with mypy @files/mypy_files.txt 10.82s user 0.92s system 94% cpu 12.484 total ``` Full cache (0.44s): ``` time uv run --python 3.10 --project airflow-core --with "apache-airflow-devel-common[mypy]" mypy @files/mypy_files.txt Success: no issues found in 1095 source files uv run --python 3.10 --project airflow-core --with mypy @files/mypy_files.tx 0.44s user 0.26s system 49% cpu 1.432 total ``` -- 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]
