-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_all.bat
More file actions
36 lines (31 loc) · 819 Bytes
/
run_all.bat
File metadata and controls
36 lines (31 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@echo off
chcp 65001 > nul
echo ====================================
echo RH Project - Run All Verifications
echo ====================================
echo.
REM Check if virtual environment exists
if not exist .venv (
echo ERROR: Virtual environment not found!
echo Please run setup.bat first
pause
exit /b 1
)
REM Activate virtual environment
echo Activating virtual environment...
call .venv\Scripts\activate.bat
REM Run all scripts
echo.
echo Running all verification scripts...
python run_all.py
REM Show results
echo.
echo ====================================
echo Showing results summary...
echo ====================================
python view_results.py
echo.
echo ====================================
echo Completed! Check logs\ for details
echo ====================================
pause