code quality run

This commit is contained in:
2025-09-13 21:58:54 +02:00
parent 0dfd885847
commit 3eb18ef91e
63 changed files with 1802 additions and 1289 deletions

View File

@@ -1,7 +1,8 @@
# tests/test_performance.py
import pytest
import time
import pytest
from models.database_models import Product
@@ -15,7 +16,7 @@ class TestPerformance:
product_id=f"PERF{i:03d}",
title=f"Performance Test Product {i}",
price=f"{i}.99",
marketplace="Performance"
marketplace="Performance",
)
products.append(product)
@@ -41,7 +42,7 @@ class TestPerformance:
title=f"Searchable Product {i}",
description=f"This is a searchable product number {i}",
brand="SearchBrand",
marketplace="SearchMarket"
marketplace="SearchMarket",
)
products.append(product)