-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.15 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "gdc-client"
dynamic = [
"version",
"description",
"readme",
"requires-python",
"license",
"authors",
"maintainers",
"keywords",
"classifiers",
"urls",
"scripts",
"gui-scripts",
"entry-points",
"dependencies",
"optional-dependencies"
]
[tool.coverage.html]
title = "gdc-client coverage report"
directory = "docs/htmlcov"
show_contexts = true
[tool.coverage.run]
branch = true
context = "unit tests"
source = ["gdc_client"]
[tool.isort]
extend_skip = [".md", ".json"]
known_first_party = ["gdc_client"]
py_version = 38
skip = [".gitignore", ".dockerignore"]
[tool.setuptools_scm]
local_scheme = "dirty-tag"
[tool.pytest.ini_options]
minversion = 6.0
python_files = "test_*.py"
python_functions = "test_*"
junit_family = "xunit2"
junit_logging = "system-out"
console_output_style = "classic"
log_level = "ERROR"
log_cli = "true"
addopts = "-rfE --color=yes -p no:ddtrace -p no:ddtrace.pytest_bdd --cov=gdc_client --cov-report term"
norecursedirs = [
".git",
".tox",
"dist",
"build"
]
testpaths = [
"tests",
]