Skip to content

Commit 69aa30b

Browse files
committed
Merge branch 'bugfix/travis' into develop
2 parents d032439 + e9c2efc commit 69aa30b

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

setup.cfg

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ testing =
1616
slash>=1.5.0
1717
Flask
1818
Flask-Loopback
19-
pylint
20-
pytest
21-
pytest-cov
19+
pylint~=1.7.0
20+
pytest; python_version < '3.0'
21+
pytest>4.0; python_version >= '3.0'
22+
pytest-cov<2.6; python_version < '3.0'
23+
pytest-cov>=2.6; python_version >= '3.0'
2224
URLObject
2325
weber-utils
2426

tests/test_backslash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# py.test style tests here
22

33
def test_import():
4-
import backslash # pylint: disable=trailing-newlines, unused-variable
4+
import backslash # pylint: disable=trailing-newlines, unused-variable,unused-import

tests/test_slash_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def test_importing_slash_plugin():
12-
from backslash.contrib import slash_plugin # pylint: disable=unused-variable
12+
from backslash.contrib import slash_plugin # pylint: disable=unused-variable,unused-import
1313

1414

1515
def test_exception_distilling(traceback):

0 commit comments

Comments
 (0)