mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
release 0.8
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
class UpdateOptions(object):
|
||||
head = False
|
||||
master = False
|
||||
develop = False
|
||||
config = False
|
||||
force = False
|
||||
|
||||
@@ -7,4 +8,4 @@ def test_update():
|
||||
from pythonbrew.commands.update import UpdateCommand
|
||||
c = UpdateCommand()
|
||||
c.run_command(UpdateOptions(), None)
|
||||
|
||||
|
||||
@@ -2,6 +2,8 @@ from tests import TESTPY_VERSION
|
||||
|
||||
class InstallOptions(object):
|
||||
force = True
|
||||
no_test = True
|
||||
verbose = False
|
||||
configure = ""
|
||||
no_setuptools = False
|
||||
alias = None
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
def test_clean():
|
||||
from pythonbrew.commands.clean import CleanCommand
|
||||
c = CleanCommand()
|
||||
c.run_command(None, None)
|
||||
@@ -0,0 +1,4 @@
|
||||
def test_clean():
|
||||
from pythonbrew.commands.cleanup import CleanupCommand
|
||||
c = CleanupCommand()
|
||||
c.run_command(None, None)
|
||||
Reference in New Issue
Block a user