Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion reframe/frontend/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ def dep_lines(u, *, prefix, depth=0, lines=None, printed=None):
if detailed:
details = f' [variant: {t.check.variant_num}, file: {location!r}]'

# if not concretized and t.check.name not in unique_checks:
if concretized or (not concretized and
t.check.unique_name not in unique_checks):
printer.info(f'- {name_info}{tc_info}{details}')
Expand Down Expand Up @@ -970,6 +969,9 @@ def print_infoline(param, value):
testcases = testcases_all
printer.verbose(f'Generated {len(testcases)} test case(s)')

# Filter out fixtures
testcases = [t for t in testcases if not t.check.is_fixture()]

# Filter test cases by name
if options.exclude_names:
for name in options.exclude_names:
Expand Down