From d1c60a2784d935d8f8f9134924602f504ff029a9 Mon Sep 17 00:00:00 2001 From: Anton Agestam Date: Fri, 27 Jan 2023 11:40:51 +0100 Subject: [PATCH] chore: Remove max-parallel from test workflow The test matrix contains 5 versions, there's really no need to cap parallelism to 4 here. This should make the test suite pass in about half the time as all the jobs can run in parallel. --- .github/workflows/tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e1335ab55..1eae3d24f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,6 @@ jobs: tests: runs-on: ubuntu-latest strategy: - max-parallel: 4 matrix: python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] steps: