From 9833e57ccd2f9ec2090ab1f7da97500a071664b9 Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Sat, 7 Mar 2026 09:51:37 -0500 Subject: conftest type annotations. --- pyproject.toml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml index 8039ae1..93bdca2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,22 +36,17 @@ dependencies = [ "wrapt", ] [project.optional-dependencies] -django = [ - "Django>=5.2", - "psycopg>=3.1", -] +django = ["Django>=5.2", "psycopg>=3.1"] [tool.setuptools.packages.find] where = ["."] -include = [ - "generalresearch", - "generalresearch.*", - "test_utils", - "test_utils.*", -] +include = ["generalresearch", "generalresearch.*", "test_utils", "test_utils.*"] [tool.setuptools.package-data] "generalresearch" = ["locales/*.json", "resources/*.csv"] "test_utils" = ["managers/upk/*.gz"] +[tool.pytest.ini_options] +testpaths = ["tests"] +addopts = "-v --tb=short" -- cgit v1.2.3