From f35a560fa03ebe1dd337a95eccda99d96e00ab6e Mon Sep 17 00:00:00 2001 From: Hamer Iboshi <hi15@inf.ufpr.br> Date: Mon, 16 Sep 2019 11:30:37 -0300 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..9d30f0b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +stages: + - test + +regression_tests: + stage: test + before_script: + - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py + - python get-pip.py + - sleep 60 + script: + - cd lde-api-regression-test + - git checkout development + - pip install -r requirements.txt + - python manage.py compare + tags: + - ubuntu -- GitLab