We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 033ee8f commit f0941b4Copy full SHA for f0941b4
flake8
.coveragerc renamed to setup.cfg
@@ -1,8 +1,13 @@
1
-# .coveragerc to control coverage.py
2
-[run]
+[flake8]
+max-line-length = 120
3
+exclude = docs/*,demo/*
4
+ignore = F403
5
+
6
7
+[coverage:run]
8
omit=*site-packages*,*distutils*,*migrations*
9
-[report]
10
+[coverage:report]
11
# Regexes for lines to exclude from consideration
12
exclude_lines =
13
# Have to re-enable the standard pragma
@@ -22,5 +27,5 @@ exclude_lines =
22
27
23
28
ignore_errors = True
24
29
25
-[html]
26
-directory = coverage_html
30
+[coverage:html]
31
+directory = coverage_html
0 commit comments