mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-07 03:04:30 +08:00
tests should now be working
This commit is contained in:
@@ -12,12 +12,13 @@ TEST_DIR = 'test'
|
||||
class IntegrationTestFile(object):
|
||||
def __init__(self, path):
|
||||
self.path = path
|
||||
self.skip = None
|
||||
|
||||
def run(self):
|
||||
output = subprocess.check_output([VSPEC_RUNNER, VSPEC_FOLDER, self.path])
|
||||
print output
|
||||
assert False
|
||||
for line in output.splitlines():
|
||||
if line.startswith('not ok'):
|
||||
print(output)
|
||||
assert False
|
||||
|
||||
def __repr__(self):
|
||||
return "<%s: %s>" % (type(self), self.path)
|
||||
|
||||
2
test_integration.py
Normal file
2
test_integration.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def test_integration(case, monkeypatch, pytestconfig):
|
||||
case.run()
|
||||
Reference in New Issue
Block a user