diff options
-rwxr-xr-x | python/qpid-python-test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/qpid-python-test b/python/qpid-python-test index 3785af559f..ca6bec00fb 100755 --- a/python/qpid-python-test +++ b/python/qpid-python-test @@ -104,10 +104,10 @@ for a in args: includes.append(a.strip()) if not includes: - if not opts.modules: - includes.extend(["qpid.tests.*", "tests.*", "tests_0-10.*"]) - else: + if opts.modules: includes.append("*") + else: + includes.extend(["qpid.tests.*", "tests.*", "tests_0-10.*"]) def is_ignored(path): for p in excludes: |