* using a MANIFEST.in file instead of our own generated MANIFEST file

* port the test_install refactoring from trunk, move to bin-for-dist

--HG--
branch : 1.0.x
This commit is contained in:
holger krekel
2009-08-26 11:09:55 +02:00
parent ab83c4e05c
commit c024dc6417
12 changed files with 398 additions and 845 deletions

View File

@@ -1,16 +0,0 @@
import py
def test_make_sdist_and_run_it(capfd, py_setup, venv):
try:
sdist = py_setup.make_sdist(venv.path)
venv.easy_install(str(sdist))
gw = venv.makegateway()
ch = gw.remote_exec("import py ; channel.send(py.__version__)")
version = ch.receive()
assert version == py.__version__
except KeyboardInterrupt:
raise
except:
print capfd.readouterr()
raise
capfd.close()