mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
14 lines
344 B
Python
14 lines
344 B
Python
from tests import TESTPY_VERSION
|
|
|
|
class InstallOptions(object):
|
|
force = True
|
|
configure = ""
|
|
no_setuptools = False
|
|
alias = None
|
|
|
|
def test_install():
|
|
from pythonbrew.commands.install import InstallCommand
|
|
for py_version in TESTPY_VERSION:
|
|
c = InstallCommand()
|
|
c.run_command(InstallOptions(), [py_version])
|