from src.models import AuditLog, License, Notification, RenewalRequest, User from src.security import get_password_hash @@ -182,3 +185,80 @@ def adm_token(client, admin) -> str: ) return response.json()['access_token'] fake = Faker() class LicenseFactory(SQLAlchemyModelFactory): class...