1
0
forked from VimPlug/jedi

Get rid of cwd modifications in tests

This commit is contained in:
Dave Halter
2020-02-06 01:47:34 +01:00
parent f2722952e7
commit 14ac0512a9
10 changed files with 55 additions and 46 deletions

View File

@@ -16,8 +16,10 @@ import os
import pytest
from os.path import abspath, dirname, join
from functools import partial, wraps
from jedi import Project
test_dir = dirname(abspath(__file__))
test_dir_project = Project(test_dir)
root_dir = dirname(test_dir)
example_dir = join(test_dir, 'examples')