From 44004f916baae8994c52d460113c47e442fc2c7a Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Fri, 19 May 2017 15:13:22 +0200 Subject: [PATCH] FEATURE: Add test execution to gitlab --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..5442cbf --- /dev/null +++ b/.gitlab-ci.yml @@ -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