universe/test.cmd

11 lines
261 B
Batchfile
Raw Permalink Normal View History

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