Skip to content

Commit bc15de9

Browse files
committed
ci: sort tools/ci/exclude_check_tools_files.txt
1 parent 8ca8f61 commit bc15de9

File tree

3 files changed

+43
-38
lines changed

3 files changed

+43
-38
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,12 @@ repos:
205205
rev: v4.0.1
206206
hooks:
207207
- id: file-contents-sorter
208-
files: 'tools\/ci\/(executable-list\.txt|mypy_ignore_list\.txt|check_copyright_ignore\.txt)'
208+
files: "tools/ci/(\
209+
executable-list\\.txt\
210+
|mypy_ignore_list\\.txt\
211+
|check_copyright_ignore\\.txt\
212+
|exclude_check_tools_files\\.txt\
213+
)"
209214
- repo: https://github.com/espressif/check-copyright/
210215
rev: v1.1.1
211216
hooks:
Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
tools/ble/**/*
2+
tools/bt/README.md
3+
tools/bt/bt_hci_to_btsnoop.py
24
tools/catch/**/*
5+
tools/check_term.py
6+
tools/ci/*exclude*.txt
7+
tools/ci/artifacts_handler.py
8+
tools/ci/astyle-rules.yml
39
tools/ci/check_*.py
4-
tools/ci/check_*.txt
510
tools/ci/check_*.sh
11+
tools/ci/check_*.txt
612
tools/ci/check_copyright_config.yaml
7-
tools/ci/get_all_test_results.py
8-
tools/gdb_panic_server.py
9-
tools/check_term.py
10-
tools/python_version_checker.py
11-
tools/ci/astyle-rules.yml
13+
tools/ci/check_test_files.py
1214
tools/ci/checkout_project_ref.py
1315
tools/ci/ci_fetch_submodule.py
1416
tools/ci/ci_get_mr_info.py
1517
tools/ci/ci_process_description.py
18+
tools/ci/cleanup_ignore_lists.py
1619
tools/ci/configure_ci_environment.sh
17-
tools/ci/generate_rules.py
1820
tools/ci/deploy_docs.py
21+
tools/ci/dynamic_pipelines/**/*
1922
tools/ci/envsubst.py
20-
tools/ci/*exclude*.txt
2123
tools/ci/executable-list.txt
2224
tools/ci/fix_empty_prototypes.sh
25+
tools/ci/generate_rules.py
2326
tools/ci/get-full-sources.sh
27+
tools/ci/get_all_test_results.py
28+
tools/ci/get_known_failure_cases_file.py
29+
tools/ci/get_supported_examples.sh
30+
tools/ci/gitlab_yaml_linter.py
31+
tools/ci/idf_build_apps_dump_soc_caps.py
32+
tools/ci/idf_ci_local/**/*
2433
tools/ci/idf_ci_utils.py
2534
tools/ci/mirror-submodule-update.sh
2635
tools/ci/multirun_with_pyenv.sh
2736
tools/ci/mypy_ignore_list.txt
37+
tools/ci/previous_stage_job_status.py
2838
tools/ci/push_to_github.sh
39+
tools/ci/python_packages/common_test_methods.py
40+
tools/ci/python_packages/gitlab_api.py
41+
tools/ci/python_packages/idf_http_server_test/**/*
42+
tools/ci/python_packages/idf_iperf_test_util/**/*
2943
tools/ci/python_packages/wifi_tools.py
44+
tools/ci/sg_rules/*
45+
tools/ci/sort_yaml.py
46+
tools/ci/test_linter.py
3047
tools/ci/utils.sh
3148
tools/eclipse-code-style.xml
49+
tools/esp_prov/**/*
3250
tools/format.sh
51+
tools/gdb_panic_server.py
52+
tools/legacy_exports/export_legacy.bat
53+
tools/legacy_exports/export_legacy.fish
54+
tools/legacy_exports/export_legacy.ps1
55+
tools/legacy_exports/export_legacy.sh
3356
tools/mocks/**/*
57+
tools/python_version_checker.py
3458
tools/set-submodules-to-github.sh
35-
tools/templates/sample_project/main/main.c
36-
tools/templates/sample_project/CMakeLists.txt
37-
tools/templates/sample_project/main/CMakeLists.txt
3859
tools/templates/sample_component/CMakeLists.txt
3960
tools/templates/sample_component/include/main.h
4061
tools/templates/sample_component/main.c
41-
tools/ci/cleanup_ignore_lists.py
42-
tools/ci/artifacts_handler.py
43-
tools/ci/get_known_failure_cases_file.py
62+
tools/templates/sample_project/CMakeLists.txt
63+
tools/templates/sample_project/main/CMakeLists.txt
64+
tools/templates/sample_project/main/main.c
4465
tools/unit-test-app/**/*
45-
tools/ci/gitlab_yaml_linter.py
46-
tools/ci/dynamic_pipelines/**/*
47-
tools/ci/idf_ci_local/**/*
48-
tools/ci/get_supported_examples.sh
49-
tools/ci/python_packages/common_test_methods.py
50-
tools/ci/python_packages/gitlab_api.py
51-
tools/ci/python_packages/idf_http_server_test/**/*
52-
tools/ci/python_packages/idf_iperf_test_util/**/*
53-
tools/esp_prov/**/*
54-
tools/ci/sort_yaml.py
55-
tools/ci/sg_rules/*
56-
tools/ci/previous_stage_job_status.py
57-
tools/legacy_exports/export_legacy.fish
58-
tools/legacy_exports/export_legacy.sh
59-
tools/legacy_exports/export_legacy.ps1
60-
tools/legacy_exports/export_legacy.bat
61-
tools/ci/idf_build_apps_dump_soc_caps.py
62-
tools/bt/bt_hci_to_btsnoop.py
63-
tools/bt/README.md
64-
tools/ci/test_linter.py
65-
tools/ci/check_test_files.py

tools/ci/idf_ci_local/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from idf_build_apps import CMakeApp
1111
from idf_build_apps import json_to_app
1212

13-
from idf_ci_local.uploader import AppUploader
14-
from idf_ci_local.uploader import get_app_uploader
13+
from .uploader import AppUploader
14+
from .uploader import get_app_uploader
1515

1616

1717
class IdfCMakeApp(CMakeApp):

0 commit comments

Comments
 (0)