mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix: apps empty list is not None
This commit is contained in:
parent
7042068519
commit
5c23314da1
@ -314,8 +314,8 @@ test_pytest_qemu:
|
|||||||
--pytest-apps
|
--pytest-apps
|
||||||
-m qemu
|
-m qemu
|
||||||
--collect-app-info "list_job_${CI_JOB_NAME_SLUG}.txt"
|
--collect-app-info "list_job_${CI_JOB_NAME_SLUG}.txt"
|
||||||
# --modified-components ${MR_MODIFIED_COMPONENTS} will be fixed with IDFCI-2270
|
--modified-components ${MR_MODIFIED_COMPONENTS}
|
||||||
# --modified-files ${MR_MODIFIED_FILES}
|
--modified-files ${MR_MODIFIED_FILES}
|
||||||
- python tools/ci/get_known_failure_cases_file.py
|
- python tools/ci/get_known_failure_cases_file.py
|
||||||
- run_cmd pytest
|
- run_cmd pytest
|
||||||
--target $IDF_TARGET
|
--target $IDF_TARGET
|
||||||
@ -344,8 +344,8 @@ test_pytest_linux:
|
|||||||
--pytest-apps
|
--pytest-apps
|
||||||
-m host_test
|
-m host_test
|
||||||
--collect-app-info "list_job_${CI_JOB_NAME_SLUG}.txt"
|
--collect-app-info "list_job_${CI_JOB_NAME_SLUG}.txt"
|
||||||
# --modified-components ${MR_MODIFIED_COMPONENTS} will be fixed with IDFCI-2270
|
--modified-components ${MR_MODIFIED_COMPONENTS}
|
||||||
# --modified-files ${MR_MODIFIED_FILES}
|
--modified-files ${MR_MODIFIED_FILES}
|
||||||
- python tools/ci/get_known_failure_cases_file.py
|
- python tools/ci/get_known_failure_cases_file.py
|
||||||
- run_cmd pytest
|
- run_cmd pytest
|
||||||
--target linux
|
--target linux
|
||||||
@ -376,8 +376,8 @@ test_pytest_macos:
|
|||||||
--pytest-apps
|
--pytest-apps
|
||||||
-m \"host_test and macos_shell\"
|
-m \"host_test and macos_shell\"
|
||||||
--collect-app-info "list_job_${CI_JOB_NAME_SLUG}.txt"
|
--collect-app-info "list_job_${CI_JOB_NAME_SLUG}.txt"
|
||||||
# --modified-components ${MR_MODIFIED_COMPONENTS} will be fixed with IDFCI-2270
|
--modified-components ${MR_MODIFIED_COMPONENTS}
|
||||||
# --modified-files ${MR_MODIFIED_FILES}
|
--modified-files ${MR_MODIFIED_FILES}
|
||||||
- python tools/ci/get_known_failure_cases_file.py
|
- python tools/ci/get_known_failure_cases_file.py
|
||||||
- run_cmd pytest
|
- run_cmd pytest
|
||||||
--target linux
|
--target linux
|
||||||
|
@ -82,7 +82,7 @@ class IdfPytestEmbedded:
|
|||||||
|
|
||||||
self.apps_list = (
|
self.apps_list = (
|
||||||
[os.path.join(idf_relpath(app.app_dir), app.build_dir) for app in apps if app.build_status == BuildStatus.SUCCESS]
|
[os.path.join(idf_relpath(app.app_dir), app.build_dir) for app in apps if app.build_status == BuildStatus.SUCCESS]
|
||||||
if apps
|
if apps is not None
|
||||||
else None
|
else None
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user