When you run "./run-tests", all it does is run "tox" directly. If you have checked this out from a repo it will work, otherwise not. The reason is that tox uses "setup.py sdist" to make a source tarball and build a virtualenv from that the old version uses "bzr ls" to list the files needed and the new version uses "bzr export" to export the files needed. I wanted the files to always come from the repo, so made the change to export directly. Both create an empty tarball without a project repo, so for me at least, it fails on both versions. This setup.py was written several years ago and does not really conform to current best practices. I'm thinking of allowing setup to operate with or without a project repo and build a list using the setup options now available. Without a repo, it would still test the existing code, but the results would be "dirty" since we could not validate their provance. But, it would allow the tarball install to run tox without a problem. On Sat, Feb 27, 2016 at 6:53 AM, Aaron Whitehouse <