forked from pyston/python-macrobenchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_pyperformance.py
33 lines (25 loc) · 921 Bytes
/
run_pyperformance.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import os
import subprocess
import pyperformance.cli
from pyperformance._venv import VirtualEnvironment
if __name__ == "__main__":
raw_wheels = os.environ["EXTRA_WHEELS"]
assert raw_wheels
wheels = []
for fn in raw_wheels.split(';'):
if os.path.exists(fn):
wheels.append(os.path.abspath(fn))
else:
wheels.append(fn)
assert wheels
ensure_reqs = VirtualEnvironment.ensure_reqs
def new_ensure_reqs(self, *args, **kw):
python = self.python
r = ensure_reqs(self, *args, **kw)
print("Installing", wheels)
subprocess.check_call([python, "-m", "pip", "install"] + wheels)
if "pyston_lite_autoload" in raw_wheels:
subprocess.check_call([python, "-c", "import sys; assert 'pyston_lite' in sys.modules"])
return r
VirtualEnvironment.ensure_reqs = new_ensure_reqs
pyperformance.cli.main()