10 lines
530 B
Batchfile
10 lines
530 B
Batchfile
@echo off
|
|
REM Push test #12 invite_order_reward (1 notification per run, random amount).
|
|
REM Works from ANY directory (locates project root + venv python by itself):
|
|
REM scripts\test_push_invite_order_reward.bat
|
|
REM Extra args pass through, e.g.: test_push_invite_order_reward.bat --invitee-phone 12000000001
|
|
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_invite_order_reward.py" %*
|