mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
18 lines
410 B
Python
18 lines
410 B
Python
import os
|
|
import shutil
|
|
|
|
PYTHONBREW_ROOT = '/tmp/pythonbrew.test'
|
|
TESTPY_VERSION = ['2.4.6', '2.5.5', '2.6.6', '3.2']
|
|
def cleanall():
|
|
if os.path.isdir(PYTHONBREW_ROOT):
|
|
shutil.rmtree(PYTHONBREW_ROOT)
|
|
|
|
def setup():
|
|
os.environ['PYTHONBREW_ROOT'] = PYTHONBREW_ROOT
|
|
cleanall()
|
|
from pythonbrew.installer import install_pythonbrew
|
|
install_pythonbrew()
|
|
|
|
def teardown():
|
|
cleanall()
|