summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/tests/__init__.py')
-rw-r--r--pym/portage/tests/__init__.py15
1 files changed, 13 insertions, 2 deletions
diff --git a/pym/portage/tests/__init__.py b/pym/portage/tests/__init__.py
index 2ade6d402..8380b6c31 100644
--- a/pym/portage/tests/__init__.py
+++ b/pym/portage/tests/__init__.py
@@ -9,10 +9,21 @@ import time
import unittest
def main():
- testDirs = ["bin", "dep", "ebuild",
- "env/config", "util", "versions", "xpak", "sets/shell"]
+
+ TEST_FILE = '__test__'
suite = unittest.TestSuite()
basedir = os.path.dirname(__file__)
+ testDirs = []
+
+ # the os.walk help mentions relative paths as being quirky
+ # I was tired of adding dirs to the list, so now we add __test__
+ # to each dir we want tested.
+ for root, dirs, files in os.walk(os.getcwd()):
+ if ".svn" in dirs:
+ dirs.remove('.svn')
+ if TEST_FILE in files:
+ testDirs.append(root)
+
for mydir in testDirs:
suite.addTests(getTests(os.path.join(basedir, mydir), basedir) )
return TextTestRunner(verbosity=2).run(suite)