Beispiel #1
0
def test_05_uninstall():
    from pythonz.commands.uninstall import UninstallCommand
    for py_type, py_versions in TESTPY_VERSION:
        c = UninstallCommand()
        for py_version in py_versions:
            c.run_command(Options({'type': py_type}), [py_version])
Beispiel #2
0
def uninstall_cmd(argv):
    '''Use Pythonz to uninstall the specified Python version'''
    UninstallCommand().run(argv)
Beispiel #3
0
def test_05_uninstall():
    from pythonz.commands.uninstall import UninstallCommand
    for py_type, py_versions in TESTPY_VERSION:
        c = UninstallCommand()
        for py_version in py_versions:
            c.run_command(Options({'type': py_type}), [py_version])