Skip to content

Commit

Permalink
Remove parallel test execution in CI workflow
Browse files Browse the repository at this point in the history
- Updated `.github/workflows/test-h3daemon.yml` to modify the testing command
- Changed `pytest -n 30` to `pytest` to disable parallel execution

Running tests without parallelism can help identify flaky tests and ensure
sequential data-dependent tests pass consistently without concurrency issues. 🛠️
  • Loading branch information
horta committed Dec 6, 2024
1 parent 259a232 commit c1768bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-h3daemon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
- name: Run tests
run: |
pipx run poetry install
pipx run poetry run pytest -n 30
pipx run poetry run pytest

0 comments on commit c1768bb

Please sign in to comment.