Improve testing

This commit is contained in:
2024-12-11 23:30:59 +01:00
parent b0966e7664
commit cfe6e27a7a
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
from __future__ import annotations
import logging
import os
from pathlib import Path
from typing import Literal
@ -8,6 +9,8 @@ from django.contrib import messages
from dotenv import load_dotenv
from platformdirs import user_data_dir
logger: logging.Logger = logging.getLogger(__name__)
# Parse a .env file and then load all the variables found as environment variables.
load_dotenv(verbose=True)