forked from pyxem/orix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
36 lines (32 loc) · 645 Bytes
/
setup.cfg
File metadata and controls
36 lines (32 loc) · 645 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
# 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
[coverage:run]
source = orix
omit =
setup.py
orix/__init__.py
relative_files = True
[coverage:report]
precision = 2
[manifix]
known_excludes =
.*
.*/**
.git/**
*.code-workspace
**/*.pyc
**/*.nbi
**/*.nbc
**/__pycache__/**
doc/_build/**
doc/examples/**
doc/reference/generated/**
doc/.ipynb_checkpoints/**
htmlcov/**