litellm/.github/workflows/load_test.yml
2024-03-15 11:11:52 -07:00

39 lines
1.2 KiB
YAML

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: "1"
RATE: "10"
RUNTIME: "3s"
- name: Process Load Test Stats
run: |
echo "Current working directory: $PWD"
ls
python ".github/workflows/interpret_load_test.py"
interpreted_results=$(cat load_test_interpreted_results.txt)
echo "::set-output name=interpreted_results::$interpreted_results"
working-directory: ${{ github.workspace }}
- name: Upload CSV as Asset to Latest Release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "load_test_stats.csv;load_test.html"
update_latest_release: true
tag_name: "load-test"
overwrite: true
body: |
${{ steps.build.outputs.interpreted_results }}