Skip to content

Commit 1ed8c38

Browse files
committed
Verbose pep257, add mypy to windows, generate mypy reports
(cherry picked from commit 2e3355c)
1 parent c2d5398 commit 1ed8c38

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
### Test results
22
/*_result*.xml
33
/report.html
4+
/mypy_report/*
45
/assets/*
56
.cache/*
67
.pytest_cache/*

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- *upgrade_python_toolset
7373
- pip install --upgrade pydocstyle
7474
script:
75-
- pydocstyle exec_helpers
75+
- pydocstyle -v exec_helpers
7676

7777
- stage: test
7878
<<: *python27

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ commands = flake8
4747
deps =
4848
pydocstyle
4949
usedevelop = False
50-
commands = pydocstyle exec_helpers
50+
commands = pydocstyle -v exec_helpers
5151

5252
[testenv:install]
5353
deps =
@@ -141,5 +141,6 @@ commands = pipdeptree
141141
usedevelop = False
142142
deps =
143143
mypy>=0.650
144+
lxml
144145
-r{toxinidir}/CI_REQUIREMENTS.txt
145-
commands = mypy --strict exec_helpers
146+
commands = mypy --strict --xslt-html-report mypy_report -p exec_helpers

0 commit comments

Comments
 (0)