mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
release 0.9
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
from tests import TESTPY_VERSION
|
||||
|
||||
class InstallOptions(object):
|
||||
force = True
|
||||
no_test = True
|
||||
verbose = False
|
||||
configure = ""
|
||||
no_setuptools = False
|
||||
alias = None
|
||||
jobs = 2
|
||||
|
||||
def test_install():
|
||||
from pythonbrew.commands.install import InstallCommand
|
||||
py_version = TESTPY_VERSION.pop(0)
|
||||
c = InstallCommand()
|
||||
c.run_command(InstallOptions(), [py_version]) # pybrew install -f -j2 2.4.6
|
||||
c.run_command(InstallOptions(), TESTPY_VERSION) # pybrew install -f -j2 2.5.6 2.6.6 3.2
|
||||
|
||||
Reference in New Issue
Block a user