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