Skip to content

Commit

Permalink
ci(ci): bump pytest concurrency for github actions (#3707)
Browse files Browse the repository at this point in the history
It's about 5 minutes faster.
  • Loading branch information
Dav1dde authored Jun 7, 2024
1 parent f6a936c commit 91d869d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,7 @@ jobs:

- run: make test-integration
env:
PYTEST_N: 6
RELAY_VERSION_CHAIN: "20.6.0,latest"

sentry-relay-integration-tests:
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ test-python: setup-git setup-venv ## run tests for Python code
.venv/bin/pytest -v py
.PHONY: test-python

PYTEST_N ?= auto
test-integration: build setup-venv ## run integration tests
.venv/bin/pytest tests -n auto -v
.venv/bin/pytest tests -n $(PYTEST_N) -v
.PHONY: test-integration

# Documentation
Expand Down

0 comments on commit 91d869d

Please sign in to comment.