-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 1013 Bytes
/
pyproject.toml
File metadata and controls
44 lines (35 loc) · 1013 Bytes
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
[build-system]
# For each Python version, build against the oldest numpy C_API_VERSION for
# which binary numpy wheels exist, and then the newest version of numpy
# implementing that C_API_VERSION.
requires = [
"setuptools",
"wheel",
"oldest-supported-numpy",
"Cython",
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
# Allow deselect with -m "not ghskip"
markers = [
"ghskip: marks tests as being poorly behaved in virtualized platforms under github-actions"
]
# Tell cibuildwheel to skip all pypy versions, and python 3.10 for macos (currently broken)
[tool.cibuildwheel]
skip = ["pp*", "cp310-macos*"]
[tool.coverage.run]
parallel = true
branch = true
concurrency = ['multiprocess', 'multiprocessing']
source = ["ecogdata"]
[tool.coverage.paths]
# source = ["ecogdata", ".tox/*/site-packages"]
source = ['ecogdata']
[tool.coverage.report]
show_missing = true
omit = ['*/test*', '*/__init__.py']