Skip to content
This repository was archived by the owner on Jun 28, 2023. It is now read-only.

Commit 19cfd3f

Browse files
committed
Add pydocstyle support
1 parent 488507f commit 19cfd3f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ install:
2323
- "pip install -U flake8 pytest-flake8"
2424
- "pip install -U pylint pytest-pylint"
2525
- "pip install -U mypy-lang"
26+
- "pip install -U pydocstyle"
2627
- "pip install -U coveralls"
2728
- "pip install ."
2829
- "pip freeze"
2930

3031
script:
3132
- python setup.py test
33+
- pycostyle everywhere
3234
- mypy everywhere
3335

3436
after_success:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
'coverage', 'pytest-cov',
2323
'flake8', 'pytest-flake8',
2424
'pylint', 'pytest-pylint',
25-
'mypy-lang'],
25+
'mypy-lang',
26+
'pydocstyle'],
2627
tests_require=['pytest'],
2728
install_requires=requires,
2829
packages=find_packages(exclude=exclude_from_packages),

0 commit comments

Comments
 (0)