Skip to content

Commit 7bb11fc

Browse files
committed
Fix tests
1 parent f795d80 commit 7bb11fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pytest_info_collector/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def pytest_terminal_summary(self, terminalreporter, exitstatus):
2121
"""
2222
Hook for printing test info at the end of the run
2323
"""
24-
# pytest: disable=unused-argument
24+
# pylint: disable=unused-argument
2525
terminalreporter.section("Test Information")
2626
for test, info in self._info.items():
2727
for datum in info:

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
envlist = py27,py33,py34,py35,py36,flake8,pylint,docs,check-manifest,checkreadme
88

99
[testenv]
10-
commands = py.test --cov={envsitepackagesdir}/pytest_info_collector -s {posargs}
10+
commands = py.test -p pytester --cov={envsitepackagesdir}/pytest_info_collector --runpytest=subprocess {posargs}
1111
deps =
1212
-rtest-requirements.txt
1313

0 commit comments

Comments
 (0)