1234567891011121314151617181920212223242526272829303132333435 |
- [bdist_wheel]
- universal=1
- [yamllint]
- excludes=.tox,utils,files
- [lint]
- lint_disable=fixme,locally-disabled,file-ignored,duplicate-code
- [flake8]
- exclude=.tox/*,utils/*,inventory/*
- max_line_length = 120
- ignore = E501,T003
- [tool:pytest]
- norecursedirs =
- .*
- __pycache__
- cover
- docs
-
- utils
- python_files =
-
-
-
- test_*.py
- *_tests.py
- addopts =
- --cov=.
- --cov-report=term
- --cov-report=html
|