-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (59 loc) · 1.27 KB
/
pyproject.toml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "exasol-script-languages-container-ci-setup"
version = "1.6.0"
description = "Manages AWS cloud CI build infrastructure."
license = "MIT"
authors = [
"Thomas Uebensee <[email protected]>"
]
[tool.poetry.dependencies]
python = ">=3.10.0,<4.0"
click = "^8.1.3"
jinja2 = ">=3.1.0"
exasol_error_reporting_python = "^0.3.0"
exasol-script-languages-container-ci = "^1.6.0"
boto3 = "1.34.118"
botocore = "1.34.118"
jsonschema = "^4.22.0"
PyGithub = "^2.3.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
toml = ">=0.10.2"
pytest = "^7.1.1"
pytest-mock = "^3.7.0"
cfn-lint = "^0.75.1"
exasol-toolbox = ">=0.16.0"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"test"
]
[tool.coverage.run]
source = [
"exasol",
]
[tool.coverage.report]
fail_under = 15
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pylint.master]
fail-under = 6.66
output-format = "colorized,json:.lint.json,text:.lint.txt"
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[tool.mypy]
ignore_errors = true
[[tool.mypy.overrides]]
module = [
"tests.*",
"test.*",
]
ignore_errors = true