From 67ab724561e4ceb8fe8fb4031de277168f7d9724 Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Sat, 21 Feb 2026 02:15:52 -0500 Subject: More pytest conf, some views, and defining more attrs on the settings config --- tests/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/__init__.py (limited to 'tests/__init__.py') diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..469eda2 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,7 @@ +import random +import string + + +def generate_amt_id(length=30): + chars = string.ascii_uppercase + string.digits + return "".join(random.choices(chars, k=length)) -- cgit v1.2.3