10 lines
502 B
Batchfile
10 lines
502 B
Batchfile
@echo off
|
|
REM Push test #3 withdraw_success (1 notification per run, random amount).
|
|
REM Works from ANY directory (locates project root + venv python by itself):
|
|
REM scripts\test_push_withdraw_success.bat
|
|
REM Extra args pass through, e.g.: test_push_withdraw_success.bat --cents 1280
|
|
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_success.py" %*
|