From af5a71cddfb526667c068ccbff176fae8b44e991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= <felix@thegcat.net> Date: Wed, 8 Feb 2023 14:51:37 +0100 Subject: [PATCH] Include pretix to CI installations --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6873363..6202e00 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ black: stage: linting image: python:3 before_script: - - pip3 install -U pip black + - pip3 install -U pip pretix black script: - black --check . @@ -21,7 +21,7 @@ isort: stage: linting image: python:3 before_script: - - pip3 install -U pip isort + - pip3 install -U pip pretix isort script: - isort -c . @@ -29,7 +29,7 @@ flake8: stage: linting image: python:3 before_script: - - pip3 install -U pip flake8 + - pip3 install -U pip pretix flake8 script: - flake8 . @@ -37,6 +37,6 @@ check-manifest: stage: linting image: python:3 before_script: - - pip3 install -U pip check-manifest + - pip3 install -U pip pretix check-manifest script: - check-manifest . -- GitLab