1[aliases]
2test = pytest
3
4[tool:pytest]
5norecursedirs =
6	build
7	dist
8	.tox
9	.docker-tox
10	.eggs
11pep8maxlinelength = 99
12mccabe-complexity = 11
13filterwarnings =
14	ignore::FutureWarning
15pep8ignore =
16	* E203 W503
17	*/__init__.py E402
18	eccodes/eccodes.py ALL
19	eccodes/high_level/* ALL
20	gribapi/errors.py ALL
21	gribapi/gribapi.py E501
22flakes-ignore =
23	*/__init__.py UnusedImport
24	*/__init__.py ImportStarUsed
25	eccodes/eccodes.py ALL
26	eccodes/high_level/* ALL
27	gribapi/errors.py ALL
28
29[coverage:run]
30branch = True
31
32[zest.releaser]
33python-file-with-version = gribapi/bindings.py
34
35[egg_info]
36tag_build =
37tag_date = 0
38
39