diff options
author | Marc Mueller <30130371+cdce8p@users.noreply.github.com> | 2022-01-31 23:02:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 23:02:15 +0100 |
commit | ade493aadfe7c62ca1cbdf0cb6e00e49dfdb4497 (patch) | |
tree | 621fb832cd13b5a75e9f06d3fed5e3548c958b3b /.github | |
parent | 1c884efd0ddcd2657e7b2d77c50d36f436a8f0ac (diff) | |
download | pylint-git-ade493aadfe7c62ca1cbdf0cb6e00e49dfdb4497.tar.gz |
Increase timeouts (#5755)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yaml | 20 | ||||
-rw-r--r-- | .github/workflows/primer-test.yaml | 8 |
2 files changed, 14 insertions, 14 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e9c4fdaeb..a007ca947 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,7 +17,7 @@ jobs: prepare-base: name: Prepare base dependencies runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 15 outputs: python-key: ${{ steps.generate-python-key.outputs.key }} pre-commit-key: ${{ steps.generate-pre-commit-key.outputs.key }} @@ -77,7 +77,7 @@ jobs: formatting: name: checks / pre-commit runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 10 needs: prepare-base steps: - name: Check out code from GitHub @@ -120,7 +120,7 @@ jobs: spelling: name: checks / spelling runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 10 needs: prepare-base steps: - name: Check out code from GitHub @@ -151,7 +151,7 @@ jobs: prepare-tests-linux: name: tests / prepare / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 15 strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9, "3.10"] @@ -194,7 +194,7 @@ jobs: pytest-linux: name: tests / run / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 30 needs: prepare-tests-linux strategy: fail-fast: false @@ -279,7 +279,7 @@ jobs: benchmark-linux: name: tests / run benchmark / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 20 needs: prepare-tests-linux strategy: fail-fast: false @@ -331,7 +331,7 @@ jobs: prepare-tests-windows: name: tests / prepare / ${{ matrix.python-version }} / Windows runs-on: windows-latest - timeout-minutes: 5 + timeout-minutes: 15 strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9, "3.10"] @@ -374,7 +374,7 @@ jobs: pytest-windows: name: tests / run / ${{ matrix.python-version }} / Windows runs-on: windows-latest - timeout-minutes: 10 + timeout-minutes: 30 needs: prepare-tests-windows strategy: fail-fast: false @@ -413,7 +413,7 @@ jobs: prepare-tests-pypy: name: tests / prepare / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 15 strategy: matrix: python-version: ["pypy3"] @@ -456,7 +456,7 @@ jobs: pytest-pypy: name: tests / run / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 30 needs: prepare-tests-pypy strategy: fail-fast: false diff --git a/.github/workflows/primer-test.yaml b/.github/workflows/primer-test.yaml index de23fe907..f3f02e904 100644 --- a/.github/workflows/primer-test.yaml +++ b/.github/workflows/primer-test.yaml @@ -24,7 +24,7 @@ jobs: prepare-tests-linux: name: prepare / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 15 strategy: matrix: python-version: [3.8, 3.9, "3.10"] @@ -67,7 +67,7 @@ jobs: pytest-primer-stdlib: name: run on stdlib / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 20 needs: prepare-tests-linux strategy: matrix: @@ -102,7 +102,7 @@ jobs: pytest-primer-external-batch-one: name: run on batch one / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 60 + timeout-minutes: 90 needs: prepare-tests-linux strategy: matrix: @@ -137,7 +137,7 @@ jobs: pytest-primer-external-batch-two: name: run on batch two / ${{ matrix.python-version }} / Linux runs-on: ubuntu-latest - timeout-minutes: 60 + timeout-minutes: 90 needs: prepare-tests-linux strategy: matrix: |