Update CI + comments

This commit is contained in:
Loic Guegan 2019-10-09 12:52:45 -04:00
parent a9774e993f
commit 6c5120e3d1
2 changed files with 12 additions and 0 deletions

View file

@ -6,3 +6,12 @@ debian:
- pip install PyYAML
script:
- bash tests/run.sh break
archlinux:
stage: test
image: archlinux/base
before_script:
- pacman -Sy --noconfirm && pacman -S --noconfirm python python-pip
- pip install PyYAML
script:
- bash tests/run.sh break

View file

@ -27,6 +27,9 @@ def before_token(token, line):
return(found.group(0)[:-len(token)])
return("")
def sorted_items(d):
"""
Mainly used for integration testing (to keep having deterministic results).
"""
return(sorted(d.items()))
def no_comment(line):
"""