Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Commit

Permalink
Fix type to be passed to addini (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
henry0312 authored Dec 20, 2017
1 parent 2830a07 commit 4587c4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pytest_docstyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ def pytest_addoption(parser):
default=False, help='run pydocstyle')
parser.addini('docstyle_convention', default='pep257',
help='choose the basic list of error codes to be checked (default: pep257)')
parser.addini('docstyle_add_select', type='linelist',
parser.addini('docstyle_add_select', type='args',
help='add error codes')
parser.addini('docstyle_add_ignore', type='linelist',
parser.addini('docstyle_add_ignore', type='args',
help='ignore error codes')


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='pytest-docstyle',
version='1.0.0',
version='1.0.1',
description='pytest plugin to run pydocstyle',
url='https://github.com/henry0312/pytest-docstyle',
author='Tsukasa OMOTO',
Expand Down

0 comments on commit 4587c4b

Please sign in to comment.