aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-04-23 15:00:39 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-04-29 12:22:50 +0200
commit3581839f4c611eeb14e64ca2ed6de4dd652ad84b (patch)
tree932b6ba01b74f241564288c47ae59ca9fe164d36 /run_project_tests.py
parent2b5831f94fdfdbce711189502c6f41606c12af61 (diff)
downloadmeson-3581839f4c611eeb14e64ca2ed6de4dd652ad84b.zip
meson-3581839f4c611eeb14e64ca2ed6de4dd652ad84b.tar.gz
meson-3581839f4c611eeb14e64ca2ed6de4dd652ad84b.tar.bz2
Fix unused variables warnings
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 8fb351c..4406e1e 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -819,7 +819,7 @@ if __name__ == '__main__':
print(l, '\n')
except UnicodeError:
print(l.encode('ascii', errors='replace').decode(), '\n')
- for name, dirs, skip in all_tests:
+ for name, dirs, _ in all_tests:
dirs = (x.name for x in dirs)
for k, g in itertools.groupby(dirs, key=lambda x: x.split()[0]):
tests = list(g)