1
0
mirror of synced 2024-11-24 07:30:11 +01:00
universe/test.cmd

11 lines
261 B
Batchfile
Raw Normal View History

2022-02-03 22:13:20 +01:00
@echo off
for /D %%G in (%CD%\*) do if exist %%G\tests (
cd %%G
echo ================================================================
echo %%G
echo ================================================================
py -m unittest
cd ..
)