1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# ServiceBus Stress Tests
TODO: README is currently a WIP and has minimal information for local testing. Need to update later.
The `stress_runner.py` file is AN EXAMPLE of how to run the tests, not the actual stress test file.
The actual test files are prefixed with `stress_test_`.
## Setup for local stress test runs
```cmd
(env) ~/azure-servicebus> pip install .
(env) ~/azure-servicebus/stress/scripts> pip install -r dev_requirements.txt
```
## Test commands for local testing
Run the chosen test file with the following command:
```cmd
(env) ~/azure-servicebus/stress/scripts> python stress_test_queues.py
```
|