Skip to content

Commit

Permalink
Merge pull request #3329 from vkarak/bugfix/filter-expr-describe-opt
Browse files Browse the repository at this point in the history
[bugfix] Do not ignore `--filter-expr` when using `--describe-stored-testcases`
  • Loading branch information
vkarak authored Dec 6, 2024
2 parents 78e50c0 + 6326cde commit 8fa397c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reframe/frontend/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,8 @@ def restrict_logging():
with exit_gracefully_on_error('failed to retrieve test case data',
printer):
printer.info(jsonext.dumps(reporting.testcase_info(
options.describe_stored_testcases, namepatt
options.describe_stored_testcases,
namepatt, options.filter_expr
), indent=2))
sys.exit(0)

Expand Down

0 comments on commit 8fa397c

Please sign in to comment.