mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-06 08:36:24 +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
|
||||
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
|
||||
|
|
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Add table
Reference in a new issue