15 lines
367 B
Bash
Executable File
15 lines
367 B
Bash
Executable File
#!/bin/bash
|
|
# PC 4 - 50 students from CSV 2 (indices 50-99)
|
|
# Run this on PC 4
|
|
|
|
cd /home/tech4biz/work/CP_Front_Automation_Test
|
|
source venv/bin/activate
|
|
|
|
python3 tests/load_tests/test_generic_load_assessments.py \
|
|
--csv students_with_passwords_2025-12-15T10-59-02_03.csv \
|
|
--start 50 --end 100 \
|
|
--workers 50 \
|
|
--headless \
|
|
--metrics-interval 10
|
|
|