summaryrefslogtreecommitdiff
path: root/tools/integration_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/integration_tests.py')
-rwxr-xr-xtools/integration_tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/integration_tests.py b/tools/integration_tests.py
index cca4a75ca..a6392bae6 100755
--- a/tools/integration_tests.py
+++ b/tools/integration_tests.py
@@ -20,6 +20,9 @@ def read_test(file_name):
lines = test_file.splitlines()
test_dict = {}
for line in lines:
+ if line.strip().startswith("#"):
+ # skip comments
+ continue
key, value = re.split(r":\s+", line)
test_dict[key] = value
return test_dict