From a5f0d0ce1bd4721e2917086d211d819f7444360c Mon Sep 17 00:00:00 2001 From: Drew Short Date: Wed, 4 Jul 2018 19:10:17 -0500 Subject: [PATCH] Adding automated testing pipeline --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c879227 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +stages: + - test + +Atheneum:Tests: + stage: test + script: + - python3 --version + - python3 -m pip --version + - python3 -m pip install pipenv + - python3 -m pipenv + - cd server + - pipenv install --dev + - pipenv shell + - PYTHONPATH=$(pwd) pytest + - exit + tags: + - linux + - python3