summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-09-25 16:37:21 -0700
committerThomas Kluyver <takowl@gmail.com>2013-09-25 16:37:21 -0700
commit4c19cc491fa2ad0ee1cad29078411e0b05a52e28 (patch)
treebce0cd4dc100c3a4640bfba158e87a4cab708e3c /tools
parent8f2cdbbdd285d81b00f49f07351776b3d6ab7a8e (diff)
downloadpexpect-git-4c19cc491fa2ad0ee1cad29078411e0b05a52e28.tar.gz
Improvements to test framework
Diffstat (limited to 'tools')
-rwxr-xr-xtools/testall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testall.py b/tools/testall.py
index a62b53a..a7ff9eb 100755
--- a/tools/testall.py
+++ b/tools/testall.py
@@ -60,7 +60,7 @@ def find_modules_and_add_paths (root_path):
for module_file in import_list:
path, module = os.path.split(module_file)
module_list.append (module)
- print('Adding:', module_file)
+ print('Adding:', os.path.relpath(module_file))
if not path in sys.path:
sys.path.append (path)
if not os.path.dirname(path) in sys.path: