Projekt_IO/scripts/run_tests.bat

12 lines
196 B
Batchfile
Raw Normal View History

@echo off
echo Running unit tests.
cd %~dp0
pytest ../tests
if %ERRORLEVEL% equ 0 (
echo Tests passed successfully.
) else (
Tests failed.
echo Tests failed.
)