You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:: Copyright(C) 2019, Team Gorgeous Bubble, All Rights Reserved.
@echo off
:: Start Test All
echo Start Test Satellite:
goto test_all
:: Traversing folder test Golang code
:test_all
echo fmt all:
for /d %%i in (*) do echo %%i & cd %%i & echo. & if not %%i == .github ( if not %%i == .idea ( if not %%i == .vscode ( if not %%i == 3pp ( if not %%i == bin ( if not %%i == doc ( if not %%i == log ( if not %%i == plugin ( if not %%i == test ( go test -v -cover -benchmem -bench . ) ) ) ) ) ) ) ) ) & echo. & echo. & cd ..