From eba0689bff7bb48f8c1bcf291078658ad2eda644 Mon Sep 17 00:00:00 2001 From: David Halter Date: Thu, 22 Aug 2013 23:22:30 +0430 Subject: [PATCH] have to add the jedi-vim directory automatically --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 1f92fda..b796218 100644 --- a/conftest.py +++ b/conftest.py @@ -14,7 +14,7 @@ class IntegrationTestFile(object): self.path = path def run(self): - output = subprocess.check_output([VSPEC_RUNNER, VSPEC_FOLDER, self.path]) + output = subprocess.check_output([VSPEC_RUNNER, '.', VSPEC_FOLDER, self.path]) for line in output.splitlines(): if line.startswith('not ok') or line.startswith('Error'): print(output)