-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (55 loc) · 1.09 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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
console_output_style="classic"
filterwarnings =[
"error",
"ignore::DeprecationWarning",
"ignore::UserWarning"
]
junit_duration_report = "total"
junit_family = "xunit2"
junit_logging = "system-out"
junit_log_passing_tests = "false"
junit_suite_name = "openweathermappy_client_pytest_suit"
log_auto_indent = "true"
log_cli = "true"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_cli_format = "%(asctime)s %(levelname)s %(message)s"
log_cli_level = "info"
log_date_format = "%Y-%m-%d %H:%M:%S"
addopts =[
"-ra",
"-q",
"--strict-markers",
"--disable-pytest-warnings"
]
markers =[
"unit : mark a test as a unit test",
"integration : mark a test as a integration test",
"e2e : mark a test as an end-to-end test"
]
minversion = "6.0"
python_classes = [
"Test*",
]
python_files = [
"test_*.py",
]
python_functions = [
"test_*",
]
pythonpath = [
"src",
]
required_plugins = [
"pytest-cov",
"pytest-dotenv"
]
testpaths=[
"tests",
]