refactor(tests): enhance test coverage for move application and piece movement logic
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import glob,re,os
|
||||
rows=[]
|
||||
for f in glob.glob('modules/*/build/test-results/test/TEST-*.xml'):
|
||||
txt=open(f,encoding='utf-8').read(500)
|
||||
m1=re.search(r'name="([^"]+)"',txt)
|
||||
m2=re.search(r'tests="(\d+)"',txt)
|
||||
if m1 and m2:
|
||||
rows.append((int(m2.group(1)),f,m1.group(1)))
|
||||
for n,f,name in sorted(rows, reverse=True)[:20]:
|
||||
print(f'{n:3} {name} ({f})')
|
||||
Reference in New Issue
Block a user