2017-05-19 15:13:22 +02:00
|
|
|
lint:coding-guideline:
|
|
|
|
image: python:3-alpine
|
|
|
|
before_script:
|
|
|
|
- pip install pep8
|
|
|
|
script:
|
|
|
|
- pep8 .
|
|
|
|
|
|
|
|
test:
|
|
|
|
image: python:3-alpine
|
|
|
|
before_script:
|
2017-05-19 15:43:40 +02:00
|
|
|
- apk add --no-cache gcc
|
2017-05-19 15:13:22 +02:00
|
|
|
- pip install neovim
|
|
|
|
- cd rplugin
|
|
|
|
script:
|
|
|
|
- python -m unittest test.test_neotags
|