forked from lucas-bremond/cesiumpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (30 loc) · 1.58 KB
/
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
######################################################################################################################################################
# @project CesiumPy
# @file setup.cfg
# @license Apache 2.0
######################################################################################################################################################
[flake8]
ignore = E211, E251, E302, E305, E501, W503
exclude = .git, __pycache__, .pytest_cache, .mypy_cache, **/snapshots/
######################################################################################################################################################
[pylint.FORMAT]
max-line-length = 250
disable = C0114
######################################################################################################################################################
[mypy]
files = **/*.py
namespace_packages = True
ignore_missing_imports = True
######################################################################################################################################################
[tool:pytest]
addopts = --strict-markers
python_files = tests.py test_*.py
filterwarnings = ignore::DeprecationWarning
######################################################################################################################################################
[coverage:run]
source = .
omit =
*/tests/*
*/conftest.py
setup.py
######################################################################################################################################################