Created
February 21, 2019 13:37
-
-
Save elena-roff/e8e84724673c38459c1dd2191a16820e to your computer and use it in GitHub Desktop.
Flake8 Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[flake8] | |
max-line-length = 100 | |
[coverage:run] | |
branch=True | |
source=<folder to run coverage on> | |
omit= | |
*/<folder to omit>/* | |
[coverage:report] | |
show_missing=True | |
fail_under=95 | |
precision=2 | |
sort=Miss | |
[tool:pytest] | |
timeout = 120 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment