Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vb_suite/run_suite.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
from vbench.api import BenchmarkRunner
from suite import *

Expand Down
4 changes: 2 additions & 2 deletions vb_suite/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
DB_PATH = config.get('setup', 'db_path')
TMP_DIR = config.get('setup', 'tmp_dir')
except:
REPO_PATH = os.path.join(HOME, 'code/pandas')
REPO_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__),"../"))
REPO_URL = '[email protected]:pydata/pandas.git'
DB_PATH = os.path.join(HOME, 'code/pandas/vb_suite/benchmarks.db')
DB_PATH = os.path.join(REPO_PATH, 'vb_suite/benchmarks.db')
TMP_DIR = os.path.join(HOME, 'tmp/vb_pandas')

PREPARE = """
Expand Down