Add gitlab ci for coverage

Fix gitlab ci

Add correct env to gitlab ci
This commit is contained in:
Andy K. Massimino
2021-09-30 20:52:00 -04:00
parent 8e3d17888f
commit 5f492f92d6
3 changed files with 37 additions and 2 deletions

32
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,32 @@
stages:
- test
before_script:
- apk update; apk add git bash make
test-latest:
stage: test
image:
name: thinca/vim:latest-full
entrypoint: [""]
environment:
MYVIM: vim -T dumb --not-a-term -n
script: cd ./test/new && make -j1 && make -j1 coverage
test-8.0.1575:
stage: test
image:
name: thinca/vim:v8.0.1575-full
entrypoint: [""]
environment:
MYVIM: vim -T dumb --not-a-term -n
script: cd ./test/new && make -j1 && make -j1 coverage
test-7.4.2273:
stage: test
image:
name: thinca/vim:v7.4.2273-full
entrypoint: [""]
environment:
MYVIM: vim -T dumb --not-a-term -n
script: cd ./test/new && make -j1 && make -j1 coverage

View File

@@ -1,10 +1,12 @@
<div align="center">
<p>
<img src='https://github.com/andymass/matchup.vim/wiki/images/teaser.jpg' width='300px' alt='and in this corner...' />
<img src='https://github.com/andymass/matchup.vim/wiki/images/teaser.jpg' width='250px' alt='and in this corner...' />
</p>
</div>
# vim match-up
<h1 align="center">
vim match-up :fist_right::fist_left:
</h1>
match-up is a plugin that lets you highlight, navigate, and operate on
sets of matching text. It extends vim's `%` key to language-specific

View File

@@ -23,6 +23,7 @@ htmlcov/index.html: env /tmp/vim-profile.txt
covimerage write_coverage /tmp/vim-profile.txt --source ../../autoload --source ../../plugin
coverage report -m
coverage html
coverage xml
env: env/pyvenv.cfg