We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d879bd + 76e8312 commit 3b1c57fCopy full SHA for 3b1c57f
launchable/test_runners/maven.py
@@ -22,6 +22,7 @@
22
# file enumeration and class file enumeration
23
'**/Test*.*',
24
'**/*Test.*',
25
+ '**/*Spec.*',
26
'**/*Tests.*',
27
'**/*TestCase.*'
28
]]
@@ -33,7 +34,7 @@
33
34
35
36
def is_file(f: str) -> bool:
- if not (f.endswith('.java') or f.endswith(".scala") or f.endswith(".kt") or f.endswith(".class")):
37
+ if not (f.endswith('.java') or f.endswith(".scala") or f.endswith(".kt") or f.endswith(".class") or f.endswith(".groovy")):
38
return False
39
for p in excludes:
40
if p.fullmatch(f):
0 commit comments