mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 15:20:16 +00:00
8 lines
230 B
Python
8 lines
230 B
Python
from tests import TESTPY_VERSION
|
|
|
|
def test_uninstall():
|
|
from pythonbrew.commands.uninstall import UninstallCommand
|
|
for py_version in TESTPY_VERSION:
|
|
c = UninstallCommand()
|
|
c.run_command(None, [py_version])
|