Commit bddf70b7 authored by Lennart Regebro's avatar Lennart Regebro

Merge.

--HG--
branch : distribute
extra : rebase_source : 0102b3983fb3f3201c8d2819b5a1120da2cc0047
parents 0d962727 0e095bea
......@@ -35,7 +35,7 @@ class IndexServer(HTTPServer):
def stop(self):
"Stop the server"
# Let the server finish the last request adn wait for a new one.
# Let the server finish the last request and wait for a new one.
time.sleep(0.1)
# self.shutdown is not supported on python < 2.6, so just
......
from setuptools import setup
setup(
name='python3.3_bdist_egg_test',
version='0.0.0',
description='Test',
license='BSD',
py_modules=['module'],
author='Marc Abramowitz',
author_email='marc@marc-abramowitz.com',
url='https://bitbucket.org/msabramo/python3.3_bdist_egg_test',
# zip_safe=False,
)
import sys
import os
import unittest
CURDIR = os.path.abspath(os.path.dirname(__file__))
TOPDIR = os.path.split(CURDIR)[0]
sys.path.insert(0, TOPDIR)
from distribute_setup import _python_cmd
class TestPython33BdistEgg(unittest.TestCase):
def test_build_egg(self):
os.chdir(os.path.join(CURDIR, 'python3.3_bdist_egg_test'))
self.assertTrue(_python_cmd("setup.py", "bdist_egg"))
if __name__ == '__main__':
unittest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment