-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (32 loc) · 1.08 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
[build-system]
requires = [
"setuptools >= 35.0.2",
"setuptools_scm >= 2.0.0, <3",
"wheel"
]
build-backend = "setuptools.build_meta"
#### AUTOGENERATED BY DEPENDENCIES.NIX: START ####
# Requirements
[dependencies]
Click = "^7.0"
[dev-dependencies]
black = { version = "^18.3-alpha.0", python = "^3.6" }
#### AUTOGENERATED BY DEPENDENCIES.NIX: END ####
[tool.pytest.ini_options]
# Import mode: https://docs.pytest.org/en/stable/pythonpath.html#pythonpath
addopts = "--color=yes"
filterwarnings = ""
log_cli = 1
# Uncomment the following `log_cli` lines if you'd like to enable logs in testing.
# log_cli = 1
# By setting cli_level to `100`, we hide most logs by default (for reference 'CRITICAL' is 50).
# Change log_cli_level to `DEBUG` or `INFO` if you'd to capture info logs as well.
# e.g.
# log_cli_level = INFO
log_cli_level = 100
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
python_files = "test_*.py"
python_functions = "*_test test_*"
norecursedirs = "site-packages"
testpaths = "src/tests/"