forked from pyxem/orix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
40 lines (36 loc) · 831 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
38
39
40
# Note that Black does not support setup.cfg
[tool:pytest]
addopts =
-ra
# Documentation scripts
--ignore=doc/_static/img/colormap_banners/create_colormap_banners.py
# Examples
--ignore=examples/*/*.py
doctest_optionflags = NORMALIZE_WHITESPACE
filterwarnings =
# From setuptools
ignore:Deprecated call to \`pkg_resources:DeprecationWarning
ignore:pkg_resources is deprecated as an API:DeprecationWarning
[coverage:run]
source = orix
omit =
setup.py
orix/__init__.py
orix/tests/**/*.py
relative_files = True
[coverage:report]
precision = 2
[manifix]
known_excludes =
.*
.*/**
*.code-workspace
**/*.pyc
**/*.nbi
**/*.nbc
**/__pycache__/**
doc/_build/**
doc/examples/**
doc/reference/generated/**
doc/.ipynb_checkpoints/**
htmlcov/**