File tree 2 files changed +8
-8
lines changed
src/python_testing/test_testing
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -514,10 +514,10 @@ jobs:
514
514
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/TestSpecParsingDeviceType.py'
515
515
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/TestConformanceSupport.py'
516
516
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/TestChoiceConformanceSupport.py'
517
+ scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/test_testing/test_TC_ICDM_2_1.py'
517
518
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/test_testing/test_IDM_10_4.py'
518
519
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/test_testing/test_TC_SC_7_1.py'
519
520
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/test_testing/TestDecorators.py'
520
- scripts/run_in_python_env.sh out/venv './src/python_testing/test_testing/test_TC_ICDM_2_1.py'
521
521
522
522
523
523
- name : Uploading core files
Original file line number Diff line number Diff line change 22
22
from unittest .mock import MagicMock
23
23
24
24
from chip .clusters import Attribute
25
-
26
- try :
27
- from matter_testing_support .matter_testing import MatterStackState , MatterTestConfig , run_tests_no_exit
28
- except ImportError :
29
- sys .path .append (os .path .abspath (
30
- os .path .join (os .path .dirname (__file__ ), '..' )))
31
- from matter_testing_support .matter_testing import MatterStackState , MatterTestConfig , run_tests_no_exit
25
+ from matter_testing_support . matter_testing import MatterStackState , MatterTestConfig , run_tests_no_exit
26
+ # try:
27
+ # from matter_testing_support.matter_testing import MatterStackState, MatterTestConfig, run_tests_no_exit
28
+ # except ImportError:
29
+ # sys.path.append(os.path.abspath(
30
+ # os.path.join(os.path.dirname(__file__), '..')))
31
+ # from matter_testing_support.matter_testing import MatterStackState, MatterTestConfig, run_tests_no_exit
32
32
33
33
34
34
class AsyncMock (MagicMock ):
You can’t perform that action at this time.
0 commit comments