aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py
index 702987e..2d15707 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -51,14 +51,14 @@ def validate_install(srcdir, installdir):
if platform.system() == 'Windows':
# Don't really know how Windows installs should work
# so skip.
- return
+ return ''
info_file = os.path.join(srcdir, 'installed_files.txt')
expected = {}
found = {}
if os.path.exists(info_file):
for line in open(info_file):
expected[platform_fix_filename(line.strip())] = True
- for root, dirs, files in os.walk(installdir):
+ for root, _, files in os.walk(installdir):
for fname in files:
found_name = os.path.join(root, fname)[len(installdir)+1:]
found[found_name] = True