12345678910111213141516171819 |
- [aliases]
- test = pytest
- flake8 = flake8
- [flake8]
- exclude = .git,__pycache__,documentation
- max-line-length = 160
- max-complexity = 13
- select = B,C,E,F,W,B9
- ignore = E501, W503, E203
- per-file-ignores =
- flexmeasures/__init__.py:F401
- flexmeasures/data/schemas/__init__.py:F401
- flexmeasures/ui/crud/assets/__init__.py:F401
- [tool:pytest]
- addopts = --strict-markers
- markers =
- skip_github: skip test in GitHub Actions. Useful in case the test passes, but breaks the test suite on GH Actions.
|