summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2010-07-01 12:56:38 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2010-07-01 12:56:38 +0000
commit8dcf8b5c5a12a21d04f1605389a1e87ca5137f7b (patch)
treefe052aae87227afad05bbf65e0b59956d9a1f58c /test
parent99e087d38f392e3d0b11f9430157312214d81e57 (diff)
downloadpyserial-8dcf8b5c5a12a21d04f1605389a1e87ca5137f7b.tar.gz
fix so that standard tests are also picked up
git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@364 f19166aa-fa4f-0410-85c2-fa1106f25c8a
Diffstat (limited to 'test')
-rw-r--r--test/run_all_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_all_tests.py b/test/run_all_tests.py
index 863057e..3bb971a 100644
--- a/test/run_all_tests.py
+++ b/test/run_all_tests.py
@@ -26,7 +26,7 @@ if len(sys.argv) > 1:
mainsuite = unittest.TestSuite()
for modulename in [os.path.splitext(x)[0]
for x in os.listdir('.')
- if x != __file__ and x.startswith("test_") and x.endswith(".py")
+ if x != __file__ and x.startswith("test") and x.endswith(".py")
]:
try:
module = __import__(modulename)