Skip to content

Commit

Permalink
BUGFIX: Limit parallel execution of GitHub actions (#60)
Browse files Browse the repository at this point in the history
Testing multiple Python versions and various OS variants in parallel seems to trigger a limit on one of the databases, leading to test failures. The workflow is now restricted to sequential execution.
  • Loading branch information
JanNiklasWeder authored May 16, 2024
1 parent 735e802 commit efbf114
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ jobs:
unittest:
needs: [build]
strategy:
max-parallel: 1
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.10", "3.11", "3.12" ]
Expand Down

0 comments on commit efbf114

Please sign in to comment.