14 lines
230 B
Batchfile
14 lines
230 B
Batchfile
|
@echo off
|
|||
|
echo [32mRunning unit tests.[0m
|
|||
|
|
|||
|
set PYTHONPATH=%CD%;%PYTHONPATH%
|
|||
|
|
|||
|
cd %~dp0
|
|||
|
pytest ../tests
|
|||
|
|
|||
|
if %ERRORLEVEL% equ 0 (
|
|||
|
echo [32mTests passed successfully.[0m
|
|||
|
) else (
|
|||
|
Tests failed.
|
|||
|
echo [31mTests failed.[0m
|
|||
|
)
|