aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorMax Nanis2026-03-07 09:51:37 -0500
committerMax Nanis2026-03-07 09:51:37 -0500
commit9833e57ccd2f9ec2090ab1f7da97500a071664b9 (patch)
treed44f8d1725164e1a83ed15d31d8b62b7487ec81e /pyproject.toml
parent91d040211a4ed6e4157896256a762d3854777b5e (diff)
downloadgeneralresearch-9833e57ccd2f9ec2090ab1f7da97500a071664b9.tar.gz
generalresearch-9833e57ccd2f9ec2090ab1f7da97500a071664b9.zip
conftest type annotations.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml15
1 files changed, 5 insertions, 10 deletions
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"