From 0b5657d76d54c15373a5c4de49c42ae9744f4924 Mon Sep 17 00:00:00 2001 From: John Helmert Date: Sun, 9 Jun 2019 20:21:02 -0500 Subject: [PATCH] Add basic Gitlab CI file --- .gitignore | 1 + .gitlab-ci.yml | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitignore b/.gitignore index 76052c0..c949442 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ !.gitattributes !.gitlab !.coveragerc +!.gitlab-ci.yml *~ *.pyc *.log diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4769f83 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,7 @@ +python3.6: + image: python:3.6-stretch + script: + - pip install .[test] + - pip install . + - python -m pytest tests/ + - pylint --rcfile .pylintrc -E tuir/