-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_all.bat
More file actions
60 lines (52 loc) · 1.14 KB
/
test_all.bat
File metadata and controls
60 lines (52 loc) · 1.14 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@echo off
chcp 65001 > nul
echo ====================================
echo RH Project - Full Test Suite
echo ====================================
echo.
REM Check virtual environment
if not exist .venv (
echo ERROR: Virtual environment not found!
pause
exit /b 1
)
REM Activate environment
call .venv\Scripts\activate.bat
echo.
echo === Testing Basic Scripts ===
echo.
python src\compute_C_right.py --P 100000
echo.
python src\measure_Cthin_star.py
echo.
python src\threshold_T0.py
echo.
python src\validate_horizontals.py
echo.
echo === Testing Enhanced Scripts ===
echo.
python src\compute_C_right_enhanced.py --P 100000
echo.
python src\measure_Cthin_star_enhanced.py --method current
echo.
python src\threshold_T0_enhanced.py
echo.
python src\validate_horizontals_enhanced.py
echo.
echo === Testing Analysis Scripts ===
echo.
python src\compare_methods.py
echo.
echo === Running Full Suite ===
echo.
python run_all.py
echo.
echo === Viewing Results ===
echo.
python view_results.py
echo.
echo ====================================
echo All tests completed!
echo Check logs\ and data\ for outputs
echo ====================================
pause