-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (46 loc) · 1.18 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
[tool.poetry]
name = "marin3r-testsuite"
version = "0.1.0"
description = ""
authors = ["phala <[email protected]>"]
readme = "README.md"
#packages = [{include = "marin3r_testsuite"}]
[tool.poetry.group.main.dependencies]
python = "^3.11"
typing_extensions = "*"
pytest-xdist = "*"
pytest = "*"
pytest-html = "*"
dynaconf = "*"
backoff = "*"
httpx = { version = "*", extras = ["http2"] }
openshift-client = "*"
weakget = "*"
[tool.poetry.group.dev.dependencies]
pylint = "*"
black = { version = "*", extras = ["d"] }
# Pytest:
[tool.pytest.ini_options]
log_format = "%(asctime)s %(levelname)s:%(name)s:%(message)s"
log_date_format = "%H:%M:%S %z"
log_level = "INFO"
junit_logging = "all"
junit_family = "xunit2"
[tool.black]
line-length = 120
[tool.pylint.FORMAT]
max-line-length = 125
disable = [
"duplicate-code", # reports false alarms AND can't be disabled locally; pylint issue #214
"fixme", # ignore TODOs
"redefined-outer-name",
"too-many-arguments",
"too-many-instance-attributes",
"too-few-public-methods"]
[tool.pylint.BASIC]
good-names=["i","j","k",
"logger",
"ca"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"