-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 969 Bytes
/
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
[tool.poetry]
name = "unittest-parametrize"
version = "0.1.0"
description = "Test parametrization for unittest inspired by pytest"
authors = ["Vlad Nedelcu <[email protected]>"]
license = "MIT"
packages = [
{ include = "unittest_param", from = "src"}
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
black = "^22.8.0"
mypy = "^0.981"
lxml = "^4.9.1"
flake8 = "^5.0.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
console_output_style = "count"
log_cli = 1
log_cli_level = "INFO"
log_level = "INFO"
# from https://github.com/pytest-dev/pytest/blob/master/src/_pytest/logging.py
log_format = "%(levelname)-8s | %(name)s:%(lineno)d | %(message)s"
testpaths = [
"tests"
]
addopts = """
-v
--cov-report=term-missing
--cov=src
--no-cov-on-fail
"""