Lines Matching +full:twister +full:- +full:tests

5 script for [Twister](https://docs.zephyrproject.org/latest/develop/test/twister.html)
9 with explicit scheme having all required Twister JSON report objects associated
11 Besides, it allows to track changes in Twister JSON report scheme
17 For other command line options and more details run the upload script with `--help`,
21 in the current Twister report format and in the upload script itself.
24 It is recommended to try the upload script with `--dry-run` option first
36 python3 ./scripts/ci/upload_test_results_es.py --create-index \
37 --index YOUR_INDEX_NAME \
38 --map-file YOUR_INDEX_MAP.json
44 The upload script has several command line options to change `twister.json` data:
47 (see `--help` for more details):
49 * `--exclude` removes excess testsuite properties not needed to store them
52 * `--transform` applies regexp group parsing rules to string properties extracting
55 * `--flatten` changes testsuite data structure in regard of one of its list components:
63 * Other command line options: `--flatten-dict-name`, `--flatten-list-names`,
64 `--flatten-separator`, `--transpose-separator`, `--escape-separator`.
70 ### Twister test results
74 python3 ./scripts/ci/upload_test_results_es.py --create-index \
75 --index zephyr-test-example \
76 --map-file zephyr_twister_index.json
79 Upload Twister test results 'as-is', without additional transformations:
82 --index zephyr-test-example \
83 ./twister-out/**/twister.json
87 ### Twister tests with recording
90 [Kernel Timer Behavior](https://github.com/zephyrproject-rtos/zephyr/tree/main/tests/kernel/timer/t…
95 python3 ./scripts/ci/upload_test_results_es.py --create-index \
96 --index zephyr-test-recording-example-1 \
97 --map-file zephyr_twister_flat_recording_metrics_index.json
103 --index zephyr-test-recording-example-1 \
104 --exclude path run_id \
105 --flatten recording \
106 ./twister-out/**/twister.json
110 ### Twister test with recording and extracting more data
114 [Kernel Latency Benchmarks](https://github.com/zephyrproject-rtos/zephyr/tree/main/tests/benchmarks…
119 python3 ./scripts/ci/upload_test_results_es.py --create-index \
120 --index zephyr-test-recording-example-2 \
121 --map-file zephyr_twister_flat_recording_index.json
128 --index zephyr-test-recording-example-2 \
129 --exclude path run_id \
130 --flatten recording \
131--transform "{ 'recording_metric': '(?P<recording_metric_object>[^\.]+)\.(?P<recording_metric_acti…
132 ./twister-out/**/twister.json
138 To store Memory Footprint data reported in `twister-footprint.json` (see Twister `--footprint-repor…
142 python3 ./scripts/ci/upload_test_results_es.py --create-index \
143 --index zephyr-memory-footprint-example \
144 --map-file zephyr_twister_flat_footprint_index.json
150 --index zephyr-memory-footprint-example \
151 --exclude path run_id \
152 --flatten footprint \
153 --flatten-list-names "{'children':'name'}" \
154--transform "{ 'footprint_name': '^(?P<footprint_area>([^\/]+\/){0,2})(?P<footprint_path>([^\/]*\/…