We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cda2084 commit 5fdec0dCopy full SHA for 5fdec0d
vb_suite/suite.py
@@ -56,9 +56,9 @@
56
DB_PATH = config.get('setup', 'db_path')
57
TMP_DIR = config.get('setup', 'tmp_dir')
58
except:
59
- REPO_PATH = os.path.join(HOME, 'code/pandas')
+ REPO_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__),"../"))
60
REPO_URL = '[email protected]:pydata/pandas.git'
61
- DB_PATH = os.path.join(HOME, 'code/pandas/vb_suite/benchmarks.db')
+ DB_PATH = os.path.join(REPO_PATH, 'vb_suite/benchmarks.db')
62
TMP_DIR = os.path.join(HOME, 'tmp/vb_pandas')
63
64
PREPARE = """
0 commit comments