forked from PMEAL/OpenPNM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytest.ini
33 lines (31 loc) · 877 Bytes
/
pytest.ini
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
[pytest]
python_files = *.py
python_classes = *Test
python_functions = test_*
filterwarnings = ignore:.*U.*mode is deprecated:DeprecationWarning
pep8maxlinelength = 90
pep8ignore =
E122
E127 # continuation line over-indented
E222 # multiple spaces after operator
E226 # missing white space around arithmetic operator
E225 # missing whitespace around operator
E241 # multiple spaces after ','
E402 # module level import not at top of file
F401 # module imported but unused
F841 # Variable assigned but unused
W503 # line break after operator
F401
openpnm/topotools/topotools.py ALL
addopts =
--doctest-modules
--doctest-glob='*.rst'
--ignore=setup.py
--ignore=test_requirements.txt
--ignore=requirements.txt
-p no:warnings
norecursedirs =
.git
build
dist
locals