#!/bin/bash # PC 4 - Load Test Command # 20 students from each CSV (60 total) # CSV 1: indices 60-79, CSV 2: indices 60-79, CSV 3: indices 60-79 # Run this on PC 4 cd /home/tech4biz/work/CP_Front_Automation_Test source venv/bin/activate # Run CSV 1 (20 students) python3 tests/load_tests/test_generic_load_assessments.py \ --csv students_with_passwords_2025-12-15T10-49-08_01.csv \ --start 60 --end 80 \ --workers 10 \ --headless \ --metrics-interval 5 & # Run CSV 2 (20 students) python3 tests/load_tests/test_generic_load_assessments.py \ --csv students_with_passwords_2025-12-15T10-59-02_03.csv \ --start 60 --end 80 \ --workers 10 \ --headless \ --metrics-interval 5 & # Run CSV 3 (20 students) python3 tests/load_tests/test_generic_load_assessments.py \ --csv students_with_passwords_2025-12-15T11-06-37_05.csv \ --start 60 --end 80 \ --workers 10 \ --headless \ --metrics-interval 5 & # Wait for all background processes wait