forked from benchopt/benchopt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 856 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
45
46
47
48
49
50
51
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm>=6.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "benchopt/version.py"
local_scheme = "no-local-version"
fallback_version = "99.0.dev0"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v -p benchopt.tests.fixtures"
testpaths = [
"benchopt",
]
[tool.check-manifest]
ignore = [
"*.yml",
".circleci/*",
"continuous_integration/*",
"Makefile",
"roadmap.md",
"benchopt/version.py"
]
[tool.coverage.run]
source = [
"benchopt"
]
omit = [
"*/tests/*",
"setup.py"
]
parallel = true
[tool.coverage.report]
exclude_lines = [
"if self.debug:",
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"except Exception",
"\\.\\.\\."
]
ignore_errors = true
show_missing = true