forked from phoenix/litellm-mirror
50 lines
No EOL
1.4 KiB
YAML
50 lines
No EOL
1.4 KiB
YAML
name: Test Locust Load Test
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Build, Publish LiteLLM Docker Image. New Release"]
|
|
types:
|
|
- completed
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install PyGithub
|
|
- name: Run Load Test
|
|
id: locust_run
|
|
uses: BerriAI/locust-github-action@master
|
|
with:
|
|
LOCUSTFILE: ".github/workflows/locustfile.py"
|
|
URL: "https://litellm-database-docker-build-production.up.railway.app/"
|
|
USERS: "100"
|
|
RATE: "10"
|
|
RUNTIME: "300s"
|
|
- name: Process Load Test Stats
|
|
run: |
|
|
echo "Current working directory: $PWD"
|
|
ls
|
|
python ".github/workflows/interpret_load_test.py"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
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 |