Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: ./.github/actions/build-docs

- name: Run tests
run: make test
run: make test-all

- name: Verify typehints
run: make lint
Expand Down Expand Up @@ -124,4 +124,4 @@ jobs:
run: poetry install --all-extras

- name: Run tests
run: make test
run: make test-all
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ We encourage pull requests and other contributions from the community. Before su

This project is built using [poetry](https://python-poetry.org/). To learn more about the basics of working with this tool, read [Poetry's basic usage guide](https://python-poetry.org/docs/basic-usage/).

To begin development, active the poetry shell and ensure your dependencies are installed.
To begin development, ensure your dependencies are installed and (optionally) activate the virtualenv.

```
poetry shell
poetry install
eval $(poetry env activate)
```

This library defines several extra dependencies to optionally enhance the SDK's capabilities. Use the following commands to install one or more of the available extras.
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ install:
.PHONY: test
test: #! Run unit tests
test: install
@LD_SKIP_DATABASE_TESTS=1 poetry run pytest $(PYTEST_FLAGS)

.PHONY: test-all
test-all: #! Run unit tests (including database integrations)
test-all: install
@poetry run pytest $(PYTEST_FLAGS)

.PHONY: lint
Expand Down