File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ name = "filter_functions"
7
7
description = " Package for efficient calculation of generalized filter functions"
8
8
readme = " README.md"
9
9
requires_python = " >= 3.9"
10
- license = {file = " LICENSE" }
10
+ license = { file = " LICENSE" }
11
11
dynamic = [" version" ]
12
12
authors = [
13
- {name = " Tobias Hangleiter" , email = " tobias.hangleiter@rwth-aachen.de" },
14
- {name = " Quantum Technology Group, RWTH Aachen University" },
13
+ { name = " Tobias Hangleiter" , email = " tobias.hangleiter@rwth-aachen.de" },
14
+ { name = " Quantum Technology Group, RWTH Aachen University" },
15
15
]
16
16
classifiers = [
17
17
" Programming Language :: Python :: 3 :: Only" ,
@@ -86,13 +86,17 @@ build = [
86
86
87
87
[tool .pytest .ini_options ]
88
88
minversion = " 4.6"
89
- addopts = " -ra --verbose --cov=filter_functions --cov-report=xml --junitxml=junit.xml -o junit_family=legacy"
89
+ addopts = """
90
+ -ra --verbose \
91
+ --cov=filter_functions --cov-report=xml --cov-append \
92
+ --junitxml=junit.xml -o junit_family=legacy"""
90
93
testpaths = [
91
94
" tests"
92
95
]
93
96
94
97
[tool .coverage .run ]
95
98
branch = true
99
+ parallel = true # each job creates a unique .coverage file, all of which are then combined by --cov-append
96
100
omit = [" tests/*" , " */__init__.py" ]
97
101
98
102
[tool .pylint .'MESSAGES CONTROL' ]
You can’t perform that action at this time.
0 commit comments