From f2b56fc91eac0b00dc21d8992b18011112708e5b Mon Sep 17 00:00:00 2001 From: Swann Perarnau Date: Fri, 25 May 2018 16:31:33 -0500 Subject: [PATCH] [feature] add basic CI support Gitlab CI support, for a py.test run inside the pipenv configuration. --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..1e9f97e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,8 @@ +stages: + - test + +py.test: + stage: test + script: + - pipenv install --dev + - pipenv run py.test -- GitLab