diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 66d146ff2d427b03e781c0a86faa354961520fbc..ad6d99128bc1344edba86062b7c20f57f423eb8d 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