Skip to content

Commit f92cd6c

Browse files
krypton36pull[bot]
authored andcommittedOct 25, 2023
Remove PAA Cert from test_definition (#18910)
1 parent 8a5b363 commit f92cd6c

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed
 

‎scripts/tests/chiptest/test_definition.py

-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
from random import randrange
2626

2727
TEST_NODE_ID = '0x12344321'
28-
DEVELOPMENT_PAA_LIST = './credentials/development/paa-root-certs'
2928

3029

3130
class App:
@@ -264,16 +263,10 @@ def Run(self, runner, apps_register, paths: ApplicationPaths, pics_file: str):
264263
app = apps_register.get('default')
265264
app.start()
266265
pairing_cmd = tool_cmd + ['pairing', 'code', TEST_NODE_ID, app.setupCode]
267-
if sys.platform != 'darwin':
268-
pairing_cmd.append('--paa-trust-store-path')
269-
pairing_cmd.append(DEVELOPMENT_PAA_LIST)
270266
runner.RunSubprocess(pairing_cmd,
271267
name='PAIR', dependencies=[apps_register])
272268

273269
test_cmd = tool_cmd + ['tests', self.run_name] + ['--PICS', pics_file]
274-
if sys.platform != 'darwin':
275-
test_cmd.append('--paa-trust-store-path')
276-
test_cmd.append(DEVELOPMENT_PAA_LIST)
277270
runner.RunSubprocess(
278271
test_cmd,
279272
name='TEST', dependencies=[apps_register])

0 commit comments

Comments
 (0)