From 94b921230a3a5dfcf9f3bf7b90090978ca7c3f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Sun, 15 Feb 2026 21:32:23 +0100 Subject: [PATCH] Add pytest-randomly to dev dependencies and sort them alphabetically --- pyproject.toml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4c61ee9..a006fc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,33 +5,34 @@ description = "Get notified when a new drop is available on Twitch." readme = "README.md" requires-python = ">=3.14" dependencies = [ + "colorama", "dateparser", + "django-auto-prefetch", + "django-debug-toolbar", + "django-silk", "django", - "psycopg[binary]", + "gunicorn", + "httpx", "json-repair", "pillow", "platformdirs", - "python-dotenv", - "pygments", - "httpx", + "psycopg[binary]", "pydantic", + "pygments", + "python-dotenv", "tqdm", - "colorama", - "gunicorn", - "django-silk", - "django-auto-prefetch", - "django-debug-toolbar", ] [dependency-groups] dev = [ - "pytest", - "pytest-django", - "djlint", "django-stubs", - "pytest-cov", + "djlint", "hypothesis[django]", - "pytest-xdist[psutil]>=3.8.0", + "pytest-cov", + "pytest-django", + "pytest-xdist[psutil]", + "pytest", + "pytest-randomly", ] [tool.pytest.ini_options]