test profiling
Browse files- .flake8 +1 -1
- .gitignore +1 -0
- Pipfile +2 -1
.flake8
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
[flake8]
|
2 |
-
ignore = E231,E203,W503,Q000,WPS111,WPS305,WPS348,WPS602,D400,DAR201,S101,DAR101,C812,D104,I001,WPS306,WPS214,D401,WPS229,WPS420,WPS230,WPS414,WPS114,WPS226,WPS442,C819,WPS601,T001,RST304,WPS410,WPS428,A003,A002,I003,WPS221,WPS326,WPS201,S405,DAR301,WPS210,WPS202,WPS213,WPS301,P103
|
3 |
max-line-length = 89
|
4 |
|
5 |
[isort]
|
|
|
1 |
[flake8]
|
2 |
+
ignore = E231,E203,W503,Q000,WPS111,WPS305,WPS348,WPS602,D400,DAR201,S101,DAR101,C812,D104,I001,WPS306,WPS214,D401,WPS229,WPS420,WPS230,WPS414,WPS114,WPS226,WPS442,C819,WPS601,T001,RST304,WPS410,WPS428,A003,A002,I003,WPS221,WPS326,WPS201,S405,DAR301,WPS210,WPS202,WPS213,WPS301,P103,WPS407,WPS432,WPS211
|
3 |
max-line-length = 89
|
4 |
|
5 |
[isort]
|
.gitignore
CHANGED
@@ -54,6 +54,7 @@ coverage.xml
|
|
54 |
*.cover
|
55 |
.hypothesis/
|
56 |
.pytest_cache/
|
|
|
57 |
|
58 |
# Debian Files
|
59 |
debian/files
|
|
|
54 |
*.cover
|
55 |
.hypothesis/
|
56 |
.pytest_cache/
|
57 |
+
prof/
|
58 |
|
59 |
# Debian Files
|
60 |
debian/files
|
Pipfile
CHANGED
@@ -23,4 +23,5 @@ flake8-eradicate = "*"
|
|
23 |
flake8-broken-line = "*"
|
24 |
pep8-naming = "*"
|
25 |
flake8-string-format = "*"
|
26 |
-
flake8-quotes = "*"
|
|
|
|
23 |
flake8-broken-line = "*"
|
24 |
pep8-naming = "*"
|
25 |
flake8-string-format = "*"
|
26 |
+
flake8-quotes = "*"
|
27 |
+
pytest-profiling = "*"
|