-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Use the PathsFinder module in scripts/tests/run_test_suite.py instead… #25368
Merged
andy31415
merged 1 commit into
project-chip:master
from
vivien-apple:YamlTests_UsePathsFinderInRunTestSuite
Feb 28, 2023
Merged
Use the PathsFinder module in scripts/tests/run_test_suite.py instead… #25368
andy31415
merged 1 commit into
project-chip:master
from
vivien-apple:YamlTests_UsePathsFinderInRunTestSuite
Feb 28, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pullapprove
bot
requested review from
amitnj,
anush-apple,
arkq,
Byungjoo-Lee,
bzbarsky-apple,
carol-apple,
chrisdecenzo,
chshu,
chulspro,
CodeChronos928,
Damian-Nordic,
dhrishi,
electrocucaracha,
emargolis,
franck-apple,
gjc13,
harimau-qirex,
harsha-rajendran,
hawk248,
jelderton,
jepenven-silabs,
jmartinez-silabs,
jmeg-sfy,
jtung-apple,
kcoppock,
kkasperczyk-no and
ksperling-apple
February 28, 2023 11:35
pullapprove
bot
requested review from
vijs,
woody-apple,
xylophone21,
yufengwangca and
yunhanw-google
February 28, 2023 11:35
PR #25368: Size comparison from de6f9a1 to 038482f Increases (1 build for cc32xx)
Full report (1 build for cc32xx)
|
tehampson
approved these changes
Feb 28, 2023
… of having duplicated code
vivien-apple
force-pushed
the
YamlTests_UsePathsFinderInRunTestSuite
branch
from
February 28, 2023 17:28
038482f
to
5dede5a
Compare
bzbarsky-apple
approved these changes
Feb 28, 2023
PR #25368: Size comparison from d6a783e to 5dede5a Increases (1 build for cc32xx)
Full report (1 build for cc32xx)
|
shchen-Lab
added a commit
to bouffalolab/connectedhomeip-1
that referenced
this pull request
Mar 1, 2023
…p-1 into bl702l_matter * 'bl702l_matter' of github.com:bouffalolab/connectedhomeip-1: (446 commits) [Python] Add Python commissioning flow (project-chip#25119) Add to flake8 in workflow and fix python files (project-chip#25280) Align Time Format Localization cluster XML to spec changes. (project-chip#25289) Use the PathsFinder module in scripts/tests/run_test_suite.py instead of having duplicated code (project-chip#25368) Add a continuous browse for Matter operational advertisements on Darwin. (project-chip#25317) Chef doorlock sample update (project-chip#24118) Fix implementation of OnChipScanComplete and OnScanComplete - second PR (project-chip#24873) Add to flake8 in workflow and fix python files (project-chip#25279) Make PASE setup a bit more robust if multiple clients race. (project-chip#25352) Add dependent lib kotlin-stdlib for kotlin version of java-matter-controller (project-chip#25358) [python tests] Add to flake8 in workflow and fix python files (part project-chip#25193) (project-chip#25312) Add to flake8 in workflow and fix python files (project-chip#25283) Add a way to read a concrete attribute path from AttributePathIB::Parser. (project-chip#25293) Make sure various tests in TestReadInteraction are not no-ops. (project-chip#25298) [Android] Add isUrgent option in Android (project-chip#25301) [NXP] Add to flake8 in workflow and fix python files (part project-chip#25193) (project-chip#25305) [placeholder] Allow applications can specify which additional sources to build (project-chip#25346) Set thread sleep and yield backends for rpc (project-chip#25350) [config-data] Remove some enums that just don't generate anything (project-chip#25370) [Tizen] CI workflow for running QEMU-based tests (project-chip#24871) ...
shchen-Lab
added a commit
to bouffalolab/connectedhomeip-1
that referenced
this pull request
Mar 1, 2023
* official/master: (449 commits) tv-casting-app: Updating the context we pass to FindOrEstablishSession Changing caching logic to match video players using hostname before other attributes Enable -Wconversion tree-wide on darwin. (project-chip#25376) [Python] Add Python commissioning flow (project-chip#25119) Add to flake8 in workflow and fix python files (project-chip#25280) Align Time Format Localization cluster XML to spec changes. (project-chip#25289) Use the PathsFinder module in scripts/tests/run_test_suite.py instead of having duplicated code (project-chip#25368) Add a continuous browse for Matter operational advertisements on Darwin. (project-chip#25317) Chef doorlock sample update (project-chip#24118) Fix implementation of OnChipScanComplete and OnScanComplete - second PR (project-chip#24873) Add to flake8 in workflow and fix python files (project-chip#25279) Make PASE setup a bit more robust if multiple clients race. (project-chip#25352) Add dependent lib kotlin-stdlib for kotlin version of java-matter-controller (project-chip#25358) [python tests] Add to flake8 in workflow and fix python files (part project-chip#25193) (project-chip#25312) Add to flake8 in workflow and fix python files (project-chip#25283) Add a way to read a concrete attribute path from AttributePathIB::Parser. (project-chip#25293) Make sure various tests in TestReadInteraction are not no-ops. (project-chip#25298) [Android] Add isUrgent option in Android (project-chip#25301) [NXP] Add to flake8 in workflow and fix python files (part project-chip#25193) (project-chip#25305) [placeholder] Allow applications can specify which additional sources to build (project-chip#25346) ...
bzbarsky-apple
added a commit
to bzbarsky-apple/connectedhomeip
that referenced
this pull request
Mar 10, 2023
When running only a subset of tests (e.g. only DL_* tests), not all apps are needed for the tests to run. This used to work because we used a fake "NOT_FOUND_IN_OUTPUT_" path for the missing apps, which was a string so the string manipulation on it worked, and the output was never used. But after project-chip#25368 we end up with None where we expect a string, and the script dies. The fix is just to skip string manipulation on the path of apps that have None as a path.
bzbarsky-apple
added a commit
to bzbarsky-apple/connectedhomeip
that referenced
this pull request
Mar 10, 2023
When running only a subset of tests (e.g. only DL_* tests), not all apps are needed for the tests to run. This used to work because we used a fake "NOT_FOUND_IN_OUTPUT_" path for the missing apps, which was a string so the string manipulation on it worked, and the output was never used. But after project-chip#25368 we end up with None where we expect a string, and the script dies. The fix is just to skip string manipulation on the path of apps that have None as a path.
bzbarsky-apple
added a commit
that referenced
this pull request
Mar 10, 2023
#25600) When running only a subset of tests (e.g. only DL_* tests), not all apps are needed for the tests to run. This used to work because we used a fake "NOT_FOUND_IN_OUTPUT_" path for the missing apps, which was a string so the string manipulation on it worked, and the output was never used. But after #25368 we end up with None where we expect a string, and the script dies. The fix is just to skip string manipulation on the path of apps that have None as a path.
kkasperczyk-no
pushed a commit
to kkasperczyk-no/sdk-connectedhomeip
that referenced
this pull request
Mar 15, 2023
…. (#25600) When running only a subset of tests (e.g. only DL_* tests), not all apps are needed for the tests to run. This used to work because we used a fake "NOT_FOUND_IN_OUTPUT_" path for the missing apps, which was a string so the string manipulation on it worked, and the output was never used. But after project-chip/connectedhomeip#25368 we end up with None where we expect a string, and the script dies. The fix is just to skip string manipulation on the path of apps that have None as a path.
lecndav
pushed a commit
to lecndav/connectedhomeip
that referenced
this pull request
Mar 22, 2023
… of having duplicated code (project-chip#25368)
lecndav
pushed a commit
to lecndav/connectedhomeip
that referenced
this pull request
Mar 22, 2023
project-chip#25600) When running only a subset of tests (e.g. only DL_* tests), not all apps are needed for the tests to run. This used to work because we used a fake "NOT_FOUND_IN_OUTPUT_" path for the missing apps, which was a string so the string manipulation on it worked, and the output was never used. But after project-chip#25368 we end up with None where we expect a string, and the script dies. The fix is just to skip string manipulation on the path of apps that have None as a path.
mwswartwout
pushed a commit
to mwswartwout/connectedhomeip
that referenced
this pull request
Mar 27, 2023
project-chip#25600) When running only a subset of tests (e.g. only DL_* tests), not all apps are needed for the tests to run. This used to work because we used a fake "NOT_FOUND_IN_OUTPUT_" path for the missing apps, which was a string so the string manipulation on it worked, and the output was never used. But after project-chip#25368 we end up with None where we expect a string, and the script dies. The fix is just to skip string manipulation on the path of apps that have None as a path.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
… of having duplicated code
Problem
Both
scripts/tests/yaml/runner.py
andscripts/tests/run_test_suites.py
are using a cache for finding binary files.This PR removes the version in
scripts/tests/run_test_suites.py
which is basically the same as the code inPathsFinder
except that it does not offer some code to view/manipulate the cache.