Skip to content

Commit

Permalink
Python tests: fix tests flag (#28298)
Browse files Browse the repository at this point in the history
* Tests flag got missed in the config

TEST: tested with --tests flag, saw only requested test run

* python: proof why we need stronly typed languages
  • Loading branch information
cecille authored Jul 27, 2023
1 parent 361dd82 commit 0b506e5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/python_testing/matter_testing_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,7 @@ def convert_args_to_matter_config(args: argparse.Namespace) -> MatterTestConfig:
config.paa_trust_store_path = args.paa_trust_store_path
config.ble_interface_id = args.ble_interface_id
config.pics = {} if args.PICS is None else read_pics_from_file(args.PICS)
config.tests = [] if args.tests is None else args.tests

config.controller_node_id = args.controller_node_id
config.trace_to = args.trace_to
Expand Down

0 comments on commit 0b506e5

Please sign in to comment.