Skip to content

Commit d58b423

Browse files
committed
Update contributing guide for new poetry toolchain
1 parent 474bd6f commit d58b423

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

CONTRIBUTING.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,21 @@
44

55
### Initialising
66

7+
ably-python uses [Poetry](https://python-poetry.org/) for packaging and dependency management. Please refer to the [Poetry documentation](https://python-poetry.org/docs/#installation) for up to date instructions on how to install Poetry.
8+
79
Perform the following operations after cloning the repository contents:
810

911
```shell
1012
git submodule init
1113
git submodule update
12-
pip install -r requirements-test.txt
14+
# Install the crypto extra if you wish to be able to run all of the tests
15+
poetry install -E crypto
1316
```
1417

1518
### Running the test suite
1619

1720
```shell
18-
python -m pytest test
21+
poetry run pytest
1922
```
2023

2124
## Release Process

0 commit comments

Comments
 (0)