From 5efb46d2d8d8f0dab42d07d96f9d6d70e6465bab Mon Sep 17 00:00:00 2001 From: Sergey Mezentsev Date: Tue, 12 Mar 2024 13:40:19 +0300 Subject: [PATCH] Include pip settings for workflows/test.yml and workflows/release.yml --- .github/workflows/release.yml | 5 +++++ .github/workflows/test.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e103eb..1d0832b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,11 @@ on: tags: - '*' +env: + PIP_DISABLE_PIP_VERSION_CHECK: on + PIP_DEFAULT_TIMEOUT: 10 + PIP_PROGRESS_BAR: off + jobs: python-lint: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3779163..ec119af 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,6 +9,11 @@ on: - 'main' workflow_dispatch: +env: + PIP_DISABLE_PIP_VERSION_CHECK: on + PIP_DEFAULT_TIMEOUT: 10 + PIP_PROGRESS_BAR: off + jobs: python-lint: runs-on: ubuntu-latest