summaryrefslogtreecommitdiff
path: root/selftest.py
diff options
context:
space:
mode:
authorkumar <kumar.mcmillan@gmail.com>2011-04-25 14:07:00 -0500
committerkumar <kumar.mcmillan@gmail.com>2011-04-25 14:07:00 -0500
commitdc095969fc322ff3e2ab70d6d70962021450c101 (patch)
treedffba74deff4b70689eced584193c54a597a9fc1 /selftest.py
parent94821e57fdd887f5f609276f1f6e18d612f213a7 (diff)
downloadnose-dc095969fc322ff3e2ab70d6d70962021450c101.tar.gz
Adds developer readme about tox and removed old test files no longer needed.
Diffstat (limited to 'selftest.py')
-rw-r--r--selftest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/selftest.py b/selftest.py
index af91642..b07d71f 100644
--- a/selftest.py
+++ b/selftest.py
@@ -48,7 +48,8 @@ if __name__ == "__main__":
import pkg_resources
env = pkg_resources.Environment(search_path=lib_dirs)
distributions = env["nose"]
- assert len(distributions) == 1
+ assert len(distributions) == 1, (
+ "Incorrect usage of selftest.py; please see DEVELOPERS.txt")
dist = distributions[0]
dist.activate()
except ImportError: