forked from drivendataorg/cloudpathlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
27 lines (21 loc) · 655 Bytes
/
setup.cfg
File metadata and controls
27 lines (21 loc) · 655 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
[aliases]
# Define setup.py command aliases here
test = pytest
[flake8]
ignore = E731,E266,E501,C901,W503,E203
max-line-length = 99
exclude =
.git
cloudpathlib/_vendored.py
[mypy]
ignore_missing_imports = True
allow_redefinition = True
# Temporarily silence Azure SDK bug https://github.com/Azure/azure-sdk-for-python/issues/20771
# Necessary because of mypy bug https://github.com/python/mypy/issues/11239#issuecomment-934479522
[mypy-azure.storage.blob.*]
ignore_errors = True
[tool:pytest]
testpaths = tests/
addopts = --cov=cloudpathlib --cov-report=term --cov-report=html --cov-report=xml
[coverage:report]
include = cloudpathlib/**.py