-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "eligibility-signposting-api-regression-tests"
version = "0.1.0"
description = ""
authors = ["SeanSteberis <sean.steberis@airelogic.com>"]
readme = "README.md"
package-mode = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.13"
pytest-nhsd-apim = "^6.0.7"
pytest = "^8.4.1"
nhs-number-generator = { git = "https://github.com/Iain-S/nhs_number_generator.git" }
flake8 = "^7.3.0"
isort = "^8.0.1"
black = "^26.3.1"
assertpy = "^1.1"
requests = "^2.33.1"
jsonschema = "^4.26.0"
pip-licenses = "^5.5.5"
requests-oauthlib = "^2.0.0"
pre-commit = "^4.6.0"
boto3 = "^1.42.93"
faker = "^40.15.0"
pyright = "^1.1.408"
pyflakes = "^3.4.0"
locust = "^2.43.4"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.6.0"
[tool.pyright]
include = ["src"]
exclude = ["**/.*", "**/__pycache__", "**/venv", "**/.venv", "**/node_modules"]
venvPath = "."
venv = ".venv"
defineConstant = { DEBUG = true }
reportArgumentType = false
reportReturnType = false
reportAttributeAccessIssue = false
reportOptionalMemberAccess = false
reportMissingImports = true
pythonVersion = "3.13"
pythonPlatform = "Linux"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"