From a8d53710f854c8dd837647b55f3b8b8c97b23e73 Mon Sep 17 00:00:00 2001 From: okhin Date: Sat, 6 Aug 2016 20:47:30 +0200 Subject: [PATCH] Updating the gitlab-ci.yml for the new runner --- .gitlab-ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 66d146f..ad6d991 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,9 @@ -image: python:3.4 - -test: +test python 3: script: - - python setup.py install + - virtualenv --python=python3 env + - source env/bin/activate + - python setup.py develop - python manage.py test stage: test tags: - - python - + - test -- GitLab