forked from equinor/subscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (38 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
41
42
43
44
45
46
47
48
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[flake8]
max-line-length = 88
ignore = E203, W503
[tool:pytest]
norecursedirs =
.git
.tox
.env
dist
build
opm-common
addopts =
-ra
--strict-markers
--ignore=docs/conf.py
--ignore=setup.py
--ignore=.eggs
markers =
integration: marks a test as an integration test
plot: marks a test as interactive, plots will flash to the screen
ri_dev: A test using a dev version of ResInsight, skipped by default
[tool:pylint]
# Module docstrings are not required, there are other means of documenting at
# that level in subscript
disable=missing-module-docstring
[check-manifest]
ignore =
src/subscript/version.py
[rstcheck]
ignore_directives=argparse,automodule
[mypy-*]
ignore_missing_imports = True
[isort]
profile=black