mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
11 lines
224 B
Python
11 lines
224 B
Python
from tests import TESTPY_FILE
|
|
|
|
class PyOptions(object):
|
|
pythons = []
|
|
verbose = False
|
|
|
|
def test_py():
|
|
from pythonbrew.commands.py import PyCommand
|
|
c = PyCommand()
|
|
c.run_command(PyOptions(), [TESTPY_FILE])
|