Skip to content

Commit 428beb8

Browse files
committed
Couple fixes for tox/lint
1 parent 41eb03f commit 428beb8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.pylintrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ disable=print-statement,
135135
redefined-argument-from-local,
136136
no-staticmethod-decorator,
137137
super-init-not-called,
138-
ungrouped-imports
138+
ungrouped-imports,
139+
no-else-return,
140+
useless-object-inheritance
139141

140142
# Enable the message, report, category or checker with the given id(s). You can
141143
# either give multiple identifier separated by comma (,) or put this option

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
22
envlist=py27,py34,py35,py36,pypy,pypy3,lint
3+
skip_missing_interpreters=True
34

45
[testenv]
56
deps=pytest

0 commit comments

Comments
 (0)