@@ -160,11 +160,11 @@ jobs:
160160 # Run original stress tests
161161 - powershell : |
162162 $env:DB_CONNECTION_STRING = 'Server=(localdb)\MSSQLLocalDB;Database=StressTestDB;Uid=testuser;Pwd=$(DB_PASSWORD);TrustServerCertificate=yes'
163- python -m pytest tests/test_011_performance_stress .py -v -m "stress" --junitxml=perf-stress-test-results.xml --timeout=1800 --capture=tee-sys
163+ python -m pytest tests/test_011_singlethreaded_stress .py -v -m "stress" --junitxml=perf-stress-test-results.xml --timeout=1800 --capture=tee-sys
164164 $exitCode = $LASTEXITCODE
165165 Write-Host "Pytest exit code: $exitCode"
166166 exit $exitCode
167- displayName: 'Run Performance Stress Tests'
167+ displayName: 'Run Single-Threaded Stress Tests'
168168 continueOnError: true
169169
170170 # Publish test results
@@ -359,8 +359,8 @@ jobs:
359359
360360 # Run original stress tests
361361 - script : |
362- python -m pytest tests/test_011_performance_stress .py -v -m "stress" --junitxml=perf-stress-test-results-linux.xml --timeout=1800 --capture=tee-sys
363- displayName: 'Run Performance Stress Tests'
362+ python -m pytest tests/test_011_singlethreaded_stress .py -v -m "stress" --junitxml=perf-stress-test-results-linux.xml --timeout=1800 --capture=tee-sys
363+ displayName: 'Run Single-Threaded Stress Tests'
364364 env:
365365 DB_CONNECTION_STRING: 'Server=localhost;Database=StressTestDB;Uid=testuser;Pwd=$(DB_PASSWORD);TrustServerCertificate=yes'
366366 continueOnError: true
@@ -408,7 +408,7 @@ jobs:
408408 echo ""
409409 echo "Tests executed:"
410410 echo " - test_020_multithreaded_stress.py (stress_threading marker)"
411- echo " - test_011_performance_stress .py (stress marker)"
411+ echo " - test_011_singlethreaded_stress .py (stress marker)"
412412 echo ""
413413 echo "See individual job results for details."
414414 displayName: 'Print Summary'
0 commit comments