Feature: Improve the retagger output using rich (#12194)

This commit is contained in:
Trenton H
2026-03-03 07:14:59 -08:00
committed by GitHub
parent b7ca3550b1
commit 43406f44f2
9 changed files with 1144 additions and 492 deletions
+11
View File
@@ -114,3 +114,14 @@ def authenticated_rest_api_client(rest_api_client: APIClient):
user = UserModel.objects.create_user(username="testuser", password="password")
rest_api_client.force_authenticate(user=user)
yield rest_api_client
@pytest.fixture(scope="session", autouse=True)
def faker_session_locale():
"""Set Faker locale for reproducibility."""
return "en_US"
@pytest.fixture(scope="session", autouse=True)
def faker_seed():
return 12345