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
3 changes: 2 additions & 1 deletion launchable/test_runners/maven.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
# file enumeration and class file enumeration
'**/Test*.*',
'**/*Test.*',
'**/*Spec.*',
'**/*Tests.*',
'**/*TestCase.*'
]]
Expand All @@ -33,7 +34,7 @@


def is_file(f: str) -> bool:
if not (f.endswith('.java') or f.endswith(".scala") or f.endswith(".kt") or f.endswith(".class")):
if not (f.endswith('.java') or f.endswith(".scala") or f.endswith(".kt") or f.endswith(".class") or f.endswith(".groovy")):
return False
for p in excludes:
if p.fullmatch(f):
Expand Down
Loading