-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpytest.ini
More file actions
45 lines (41 loc) · 920 Bytes
/
pytest.ini
File metadata and controls
45 lines (41 loc) · 920 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
45
[pytest]
filterwarnings =
default
once:::dipy
once:::fury
ignore:::h5py
ignore:::matplotlib
ignore:::nibabel
ignore:::nilearn
ignore:::numpy
ignore:::Pillow
once:::bids-validator
once:::pybids
ignore:::scikit-learn
ignore:::sklearn
ignore:::scipy
ignore:::vtk
default:::trimeshpy
ignore:::nilearn
once:::bctpy
once:::statsmodels
once:::dmri-commit
once:::cvxpy
once:::dmri-amico
required_plugins =
pytest-console-scripts
pytest-mock
pytest-html
pytest-cov
junit_logging = out-err
addopts =
--html=.test_reports/pytest.html
--junit-xml=.test_reports/junit.xml
--cov
--cov-report html
--cov-report xml
-n auto
--dist worksteal
markers =
ml: For tests related to machine learning (NLTK, Pytorch, etc.)
serial: mark test to be run serially (not in parallel with pytest-xdist)