simple-web-app

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 1adb9fa7a779e18f665c8bfbf77d032ed6901283
parent cdad5ffa66cf8e295c9c7e9c1c3383ea514c086c
Author: Silas Brack <silasbrack@gmail.com>
Date:   Sat,  4 Oct 2025 11:30:57 +0200

test: add locustfile

Diffstat:
Atests/locustfile.py | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/tests/locustfile.py b/tests/locustfile.py @@ -0,0 +1,7 @@ +from locust import HttpUser, task + +class QuickstartUser(HttpUser): + @task + def home_page(self): + self.client.get("/") +