From 7a02355c2d314be9dbbc92346099c50343506fad Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 24 Sep 2020 11:46:47 +0200 Subject: [PATCH] Install tox before running CI --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 584efe6..aa481e9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,11 +5,15 @@ stages: py38-django31: stage: test image: python:3-alpine + before_script: + - pip install tox --no-cache-dir script: tox -e py38-django31 linters: stage: quality-assurance image: python:3-alpine + before_script: + - pip install tox --no-cache-dir script: tox -e linters # Be nice to new contributors, but please use `tox`