We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1670814 commit 01ddffbCopy full SHA for 01ddffb
1 file changed
tests/test_verifier.py
@@ -25,19 +25,11 @@
25
26
27
def _passing_test_files():
28
- return [
29
- c.path
30
- for c in collect_all_test_files()
31
- if not c.is_expected_fail and not c.needs_vmlinux
32
- ]
+ return [c.path for c in collect_all_test_files() if not c.is_expected_fail]
33
34
35
def _passing_test_ids():
36
37
- c.rel_path
38
39
40
+ return [c.rel_path for c in collect_all_test_files() if not c.is_expected_fail]
41
42
43
def _get_rejection_reason(verifier_test_file: Path, output) -> str:
0 commit comments