Skip to content

Commit 992d7b0

Browse files
authored
Merge pull request #34 from carsongee/rc/0.8.0
Rc/0.8.0
2 parents 07518ba + e7189b5 commit 992d7b0

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: python
22
python:
33
- "2.7"
4-
- "3.3"
54
- "3.4"
65
- "3.5"
76
- "3.6"

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ This code is heavily based on
4747
Releases
4848
========
4949

50+
0.8.0
51+
~~~~~
52+
53+
- `bdrung <https://github.com/bdrung>`_ corrected inconsitent returns in a function
54+
- Dropped Python 3.3 support
55+
5056
0.7.1
5157
~~~~~
5258

pytest_pylint.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ def pytest_collect_file(path, parent):
117117
"""Collect files on which pylint should run"""
118118
config = parent.config
119119
if not config.option.pylint:
120-
return
120+
return None
121121
if path.ext != ".py":
122-
return
122+
return None
123123
rel_path = get_rel_path(path.strpath, parent.fspath.strpath)
124124
if parent.pylint_config is None:
125125
parent.pylint_files.add(rel_path)
@@ -131,6 +131,7 @@ def pytest_collect_file(path, parent):
131131
return PyLintItem(
132132
path, parent, parent.pylint_msg_template, parent.pylintrc_file
133133
)
134+
return None
134135

135136

136137
def pytest_collection_finish(session):

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
name='pytest-pylint',
1313
description='pytest plugin to check source code with pylint',
1414
long_description=open("README.rst").read(),
15-
license="MIT",
16-
version='0.7.1',
15+
license='MIT',
16+
version='0.8.0',
1717
author='Carson Gee',
1818
author_email='[email protected]',
1919
url='https://github.com/carsongee/pytest-pylint',
@@ -25,7 +25,8 @@
2525
'Intended Audience :: Developers',
2626
'License :: OSI Approved :: MIT License',
2727
'Programming Language :: Python :: 2.7',
28-
'Programming Language :: Python :: 3.3',
2928
'Programming Language :: Python :: 3.4',
29+
'Programming Language :: Python :: 3.5',
30+
'Programming Language :: Python :: 3.6',
3031
],
3132
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35,py36
2+
envlist = py27,py34,py35,py36
33
skip_missing_interpreters =
44
true
55
[testenv]

0 commit comments

Comments
 (0)