diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-02-01 22:28:31 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-02 01:28:31 -0500 |
commit | 3650bae5f6565cb6de2706512df145c86e8525cd (patch) | |
tree | 2bc066e39dc60fdb6ce7fd615c7f9d92deb45f54 /tools/integration_tests.py | |
parent | 16ed1f2545b34851ebdb9095251236fb51e39f5d (diff) |
Add --info flag to display file info (compiled code/source map) (#1647)
Diffstat (limited to 'tools/integration_tests.py')
-rwxr-xr-x | tools/integration_tests.py | 3 |
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 |