FEATURE: Add test execution to gitlab
This commit is contained in:
parent
3167bbe264
commit
44004f916b
1 changed files with 14 additions and 0 deletions
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
lint:coding-guideline:
|
||||
image: python:3-alpine
|
||||
before_script:
|
||||
- pip install pep8
|
||||
script:
|
||||
- pep8 .
|
||||
|
||||
test:
|
||||
image: python:3-alpine
|
||||
before_script:
|
||||
- pip install neovim
|
||||
- cd rplugin
|
||||
script:
|
||||
- python -m unittest test.test_neotags
|
Loading…
Reference in a new issue