mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-07 09:06:25 +02:00
Update CI + comments
This commit is contained in:
parent
a9774e993f
commit
6c5120e3d1
2 changed files with 12 additions and 0 deletions
|
@ -6,3 +6,12 @@ debian:
|
||||||
- pip install PyYAML
|
- pip install PyYAML
|
||||||
script:
|
script:
|
||||||
- bash tests/run.sh break
|
- 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
|
||||||
|
|
|
@ -27,6 +27,9 @@ def before_token(token, line):
|
||||||
return(found.group(0)[:-len(token)])
|
return(found.group(0)[:-len(token)])
|
||||||
return("")
|
return("")
|
||||||
def sorted_items(d):
|
def sorted_items(d):
|
||||||
|
"""
|
||||||
|
Mainly used for integration testing (to keep having deterministic results).
|
||||||
|
"""
|
||||||
return(sorted(d.items()))
|
return(sorted(d.items()))
|
||||||
def no_comment(line):
|
def no_comment(line):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Reference in a new issue