From a37bb67520d3bab1991f194e53460ecf0ff59775 Mon Sep 17 00:00:00 2001 From: jerger Date: Thu, 24 Feb 2022 15:47:14 +0100 Subject: [PATCH] fix #2 --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 49c73b8..74360db 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,8 +2,9 @@ image: "python:3.8" before_script: - python --version + - python -m pip install --upgrade pip - pip install -r requirements.txt - - pip install -r dev-requirements.txt + - pip install -r dev_requirements.txt stages: - lint