From e333183ca48aa98baf9d510caf0c8f3f93d04b82 Mon Sep 17 00:00:00 2001 From: Pytgaen <32298455+pytgaen@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:18:18 +0200 Subject: [PATCH] feat: isort exclude .cache --- templates/gitlab-ci-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/gitlab-ci-python.yml b/templates/gitlab-ci-python.yml index 55d0832..9a5759a 100644 --- a/templates/gitlab-ci-python.yml +++ b/templates/gitlab-ci-python.yml @@ -969,7 +969,7 @@ py-isort: script: - install_requirements - _pip install isort - - _run isort . --check-only + - _run isort . --check-only --extend-skip .cache rules: # exclude if $PYTHON_ISORT_ENABLED not set - if: '$PYTHON_ISORT_ENABLED != "true"' -- GitLab