10 lines
506 B
Batchfile
10 lines
506 B
Batchfile
@echo off
|
|
REM Push test #4 withdraw_failed (1 notification per run, random amount + reason).
|
|
REM Works from ANY directory (locates project root + venv python by itself):
|
|
REM scripts\test_push_withdraw_failed.bat
|
|
REM Extra args pass through, e.g.: test_push_withdraw_failed.bat --cents 350
|
|
REM ASCII-only comments: cmd parses .bat in the console codepage (GBK), UTF-8
|
|
REM Chinese here gets mangled into bogus commands.
|
|
cd /d "%~dp0.."
|
|
".venv\Scripts\python.exe" "scripts\test_push_withdraw_failed.py" %*
|