Skip to content

Commit f089f96

Browse files
committed
twister: update ci options for twister
Now that we have partially oerhauled twister in the tree, modify actions with new options: - not reporting filtered tests is now default - output is json, not csv Signed-off-by: Anas Nashif <[email protected]>
1 parent 81ed222 commit f089f96

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/twister.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ jobs:
132132
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.14.1
133133
CLANG_ROOT_DIR: /usr/lib/llvm-12
134134
TWISTER_COMMON: ' --inline-logs -v -N -M --retry-failed 3 '
135-
DAILY_OPTIONS: ' -M --build-only --all --no-skipped-report'
136-
PR_OPTIONS: ' --clobber-output --integration --no-skipped-report'
137-
PUSH_OPTIONS: ' --clobber-output -M --no-skipped-report'
135+
DAILY_OPTIONS: ' -M --build-only --all'
136+
PR_OPTIONS: ' --clobber-output --integration'
137+
PUSH_OPTIONS: ' --clobber-output -M'
138138
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
139139
BASE_REF: ${{ github.base_ref }}
140140
steps:

scripts/ci/test_plan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def parse_args():
289289
help="Commit range in the form: a..b")
290290
parser.add_argument('-m', '--modified-files', default=None,
291291
help="File with information about changed/deleted/added files.")
292-
parser.add_argument('-o', '--output-file', default="testplan.csv",
292+
parser.add_argument('-o', '--output-file', default="testplan.json",
293293
help="JSON file with the test plan to be passed to twister")
294294
parser.add_argument('-P', '--pull-request', action="store_true",
295295
help="This is a pull request")

0 commit comments

Comments
 (0)