trim trailing ws

This commit is contained in:
John Still 2017-07-11 13:31:11 -05:00
parent c2d49e39a2
commit 676c4f970d
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ def pytest_ignore_collect(path, config):
if py.path.local(path) in ignore_paths:
return True
invenv = py.path.local(sys.prefix) == path
invenv = py.path.local(sys.prefix) == path
allow_invenv = config.getoption("collect_in_virtualenv")
if invenv and not allow_invenv:
config.warn(RuntimeWarning,