From df64e7f1704a9e630d2e78bdb55f429e6aaa8a04 Mon Sep 17 00:00:00 2001 From: Red-GitHubBot <88117545+Red-GitHubBot@users.noreply.github.com> Date: Fri, 6 Jan 2023 03:23:27 +0100 Subject: [PATCH] [3.4] Fix flaky CI caused by flake8's flakiness (GitHub migration) (#5910) (#5957) Co-authored-by: Jakub Kuczys --- .github/workflows/lint_python.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yaml b/.github/workflows/lint_python.yaml index ea0ff7679..1cfa71aa8 100644 --- a/.github/workflows/lint_python.yaml +++ b/.github/workflows/lint_python.yaml @@ -20,7 +20,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.8" - - run: "python -m pip install git+https://github.com/pycqa/pyflakes@1911c20#egg=pyflakes git+https://github.com/pycqa/pycodestyle@d219c68#egg=pycodestyle git+https://gitlab.com/pycqa/flake8@3.7.9#egg=flake8" + - run: "python -m pip install git+https://github.com/pycqa/pyflakes@1911c20#egg=pyflakes git+https://github.com/pycqa/pycodestyle@d219c68#egg=pycodestyle git+https://github.com/pycqa/flake8@3.7.9#egg=flake8" name: Install Flake8 - run: "python -m flake8 . --count --select=E9,F7,F82 --show-source" name: Flake8 Linting