Re-add sys.path setup in test/base.py

This commit is contained in:
Takafumi Arakaki
2013-03-10 18:58:32 +01:00
parent 20c9709aef
commit 3b41a47c08

View File

@@ -6,13 +6,13 @@ import os
from os.path import abspath, dirname
import functools
test_dir = dirname(abspath(__file__))
root_dir = dirname(test_dir)
sys.path.insert(0, root_dir)
import jedi
from jedi import debug
test_dir = dirname(abspath(__file__))
test_sum = 0
t_start = time.time()
# Sorry I didn't use argparse here. It's because argparse is not in the