forked from kushbanga/pykilosort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
37 lines (33 loc) · 771 Bytes
/
setup.cfg
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
[wheel]
universal = 1
[tool:pytest]
addopts = --cov=pykilosort --cov-report term --cov-report html
filterwarnings =
default
ignore::DeprecationWarning:.*
ignore:numpy.ufunc
markers =
requires_gpu:
Tests requires cupy (with gpu & CUDA). Tests that seem
pointless without a GPU but still work should *not* use this.
slow: marks tests as slow, don't run them by default
norecursedirs = experimental _*
[flake8]
ignore=E265,E731,E741,W504,W605
max-line-length=99
[coverage:run]
branch = False
omit = tests/*
[coverage:report]
exclude_lines =
pragma: no cover
raise AssertionError
raise NotImplementedError
pass
continue
qtbot.stop()
_in_travis():
_is_high_dpi():
return$
^"""
show_missing = True