8 lines
247 B
Batchfile
8 lines
247 B
Batchfile
@echo off
|
|
REM Test Stabilization Runner
|
|
REM Runs all backend tests in batches of 50 with 50-minute timeout
|
|
REM Uses binary search to identify hanging tests
|
|
|
|
cd /d "%~dp0..\.."
|
|
powershell -ExecutionPolicy Bypass -File "%~dp0run-tests-batch.ps1" %*
|