diff --git a/stac_fastapi/api/tests/benchmarks.py b/stac_fastapi/api/tests/benchmarks.py index b1c6321d7..ad73d2424 100644 --- a/stac_fastapi/api/tests/benchmarks.py +++ b/stac_fastapi/api/tests/benchmarks.py @@ -131,7 +131,16 @@ def f(p): ) benchmark.group = "Items With Model validation" if validate else "Items" - benchmark.name = "Items With Model validation" if validate else "Items" + benchmark.name = ( + f"Items With Model validation ({limit})" + if validate + else f"Items Limit: ({limit})" + ) + benchmark.fullname = ( + f"Items With Model validation ({limit})" + if validate + else f"Items Limit: ({limit})" + ) response = benchmark(f, params) assert response.status_code == 200 @@ -151,6 +160,9 @@ def f(): benchmark.group = "Collection With Model validation" if validate else "Collection" benchmark.name = "Collection With Model validation" if validate else "Collection" + benchmark.fullname = ( + "Collection With Model validation" if validate else "Collection" + ) response = benchmark(f) assert response.status_code == 200 @@ -170,6 +182,9 @@ def f(): benchmark.group = "Collections With Model validation" if validate else "Collections" benchmark.name = "Collections With Model validation" if validate else "Collections" + benchmark.fullname = ( + "Collections With Model validation" if validate else "Collections" + ) response = benchmark(f) assert response.status_code == 200