@@ -80,78 +80,78 @@ file_name=${0##*/}
80
80
81
81
while (( $# )) ; do
82
82
case $1 in
83
- --help | -h)
84
- help
85
- exit 1
86
- ;;
87
- --enable_ble | -b)
88
- enable_ble=$2
89
- if [[ " $enable_ble " != " true" && " $enable_ble " != " false" ]]; then
90
- echo " chip_detail_logging should have a true/false value, not '$enable_ble '"
91
- exit
92
- fi
93
- shift
94
- ;;
95
- --chip_detail_logging | -d)
96
- chip_detail_logging=$2
97
- if [[ " $chip_detail_logging " != " true" && " $chip_detail_logging " != " false" ]]; then
98
- echo " chip_detail_logging should have a true/false value, not '$chip_detail_logging '"
99
- exit
100
- fi
101
- shift
102
- ;;
103
- --chip_mdns | -m)
104
- chip_mdns=$2
105
- shift
106
- ;;
107
- --enable_pybindings | -p)
108
- enable_pybindings=$2
109
- if [[ " $enable_pybindings " != " true" && " $enable_pybindings " != " false" ]]; then
110
- echo " enable_pybindings should have a true/false value, not '$enable_pybindings '"
111
- exit
112
- fi
113
- shift
114
- ;;
115
- --time_between_case_retries | -t)
116
- chip_case_retry_delta=$2
117
- shift
118
- ;;
119
- --install_virtual_env | -i)
120
- install_virtual_env=$2
121
- shift
122
- ;;
123
- --clean_virtual_env | -c)
124
- clean_virtual_env=$2
125
- if [[ " $clean_virtual_env " != " yes" && " $clean_virtual_env " != " no" ]]; then
126
- echo " clean_virtual_env should have a yes/no value, not '$clean_virtual_env '"
127
- exit
128
- fi
129
- shift
130
- ;;
131
- --include_pytest_deps)
132
- install_pytest_requirements=$2
133
- if [[ " $install_pytest_requirements " != " yes" && " $install_pytest_requirements " != " no" ]]; then
134
- echo " install_pytest_requirements should have a yes/no value, not '$install_pytest_requirements '"
135
- exit
136
- fi
137
- shift
138
- ;;
139
- --extra_packages)
140
- extra_packages=$2
141
- shift
142
- ;;
143
- --pregen_dir | -z)
144
- pregen_dir=$2
145
- shift
146
- ;;
147
- --jupyter-lab | -j)
148
- install_jupyterlab=yes
149
- ;;
150
- -* )
151
- help
152
- echo " Unknown Option \" $1 \" "
153
- exit 1
154
- ;;
83
+ --help | -h)
84
+ help
85
+ exit 1
86
+ ;;
87
+ --enable_ble | -b)
88
+ enable_ble=$2
89
+ if [[ " $enable_ble " != " true" && " $enable_ble " != " false" ]]; then
90
+ echo " chip_detail_logging should have a true/false value, not '$enable_ble '"
91
+ exit
92
+ fi
93
+ shift
94
+ ;;
95
+ --chip_detail_logging | -d)
96
+ chip_detail_logging=$2
97
+ if [[ " $chip_detail_logging " != " true" && " $chip_detail_logging " != " false" ]]; then
98
+ echo " chip_detail_logging should have a true/false value, not '$chip_detail_logging '"
99
+ exit
100
+ fi
101
+ shift
102
+ ;;
103
+ --chip_mdns | -m)
104
+ chip_mdns=$2
105
+ shift
106
+ ;;
107
+ --enable_pybindings | -p)
108
+ enable_pybindings=$2
109
+ if [[ " $enable_pybindings " != " true" && " $enable_pybindings " != " false" ]]; then
110
+ echo " enable_pybindings should have a true/false value, not '$enable_pybindings '"
111
+ exit
112
+ fi
113
+ shift
114
+ ;;
115
+ --time_between_case_retries | -t)
116
+ chip_case_retry_delta=$2
117
+ shift
118
+ ;;
119
+ --install_virtual_env | -i)
120
+ install_virtual_env=$2
121
+ shift
122
+ ;;
123
+ --clean_virtual_env | -c)
124
+ clean_virtual_env=$2
125
+ if [[ " $clean_virtual_env " != " yes" && " $clean_virtual_env " != " no" ]]; then
126
+ echo " clean_virtual_env should have a yes/no value, not '$clean_virtual_env '"
127
+ exit
128
+ fi
129
+ shift
130
+ ;;
131
+ --include_pytest_deps)
132
+ install_pytest_requirements=$2
133
+ if [[ " $install_pytest_requirements " != " yes" && " $install_pytest_requirements " != " no" ]]; then
134
+ echo " install_pytest_requirements should have a yes/no value, not '$install_pytest_requirements '"
135
+ exit
136
+ fi
137
+ shift
138
+ ;;
139
+ --extra_packages)
140
+ extra_packages=$2
141
+ shift
142
+ ;;
143
+ --pregen_dir | -z)
144
+ pregen_dir=$2
145
+ shift
146
+ ;;
147
+ --jupyter-lab | -j)
148
+ install_jupyterlab=yes
149
+ ;;
150
+ -* )
151
+ help
152
+ echo " Unknown Option \" $1 \" "
153
+ exit 1
154
+ ;;
155
155
esac
156
156
shift
157
157
done
213
213
fi
214
214
215
215
# Add the matter_testing_infrastructure wheel
216
- WHEEL+=(" $OUTPUT_ROOT " /python/obj/src/python_testing/matter_testing_infrastructure/metadata_parser ._build_wheel/metadata_parser -* .whl)
216
+ WHEEL+=(" $OUTPUT_ROOT " /python/obj/src/python_testing/matter_testing_infrastructure/testing_support ._build_wheel/testing_support -* .whl)
217
217
218
218
if [ -n " $extra_packages " ]; then
219
219
WHEEL+=(" $extra_packages " )
0 commit comments