diff options
| author | Max Nanis | 2026-03-07 09:51:37 -0500 |
|---|---|---|
| committer | Max Nanis | 2026-03-07 09:51:37 -0500 |
| commit | 9833e57ccd2f9ec2090ab1f7da97500a071664b9 (patch) | |
| tree | d44f8d1725164e1a83ed15d31d8b62b7487ec81e /pyproject.toml | |
| parent | 91d040211a4ed6e4157896256a762d3854777b5e (diff) | |
| download | generalresearch-9833e57ccd2f9ec2090ab1f7da97500a071664b9.tar.gz generalresearch-9833e57ccd2f9ec2090ab1f7da97500a071664b9.zip | |
conftest type annotations.
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 15 |
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" |
