Update load_test.yml #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Locust Load Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Run Load Test | |
id: locust_run | |
uses: BerriAI/locust-github-action@master | |
with: | |
LOCUSTFILE: ".github/workflows/locustfile.py" | |
URL: "https://litellm-api.up.railway.app/" | |
USERS: "5" | |
RATE: "5" | |
RUNTIME: "10s" | |
- name: Print CSV File Contents | |
run: | | |
echo "Contents of example_stats.csv:" | |
cat results_stats.csv |