setup.cfg 501 B

12345678910111213141516171819
  1. [aliases]
  2. test = pytest
  3. flake8 = flake8
  4. [flake8]
  5. exclude = .git,__pycache__,documentation
  6. max-line-length = 160
  7. max-complexity = 13
  8. select = B,C,E,F,W,B9
  9. ignore = E501, W503, E203
  10. per-file-ignores =
  11. flexmeasures/__init__.py:F401
  12. flexmeasures/data/schemas/__init__.py:F401
  13. flexmeasures/ui/crud/assets/__init__.py:F401
  14. [tool:pytest]
  15. addopts = --strict-markers
  16. markers =
  17. skip_github: skip test in GitHub Actions. Useful in case the test passes, but breaks the test suite on GH Actions.