We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a7d9c2 commit ede00a9Copy full SHA for ede00a9
DEVELOPMENT.md
@@ -10,19 +10,21 @@ curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poet
10
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
11
```
12
13
-2. Install dependencies:
+2. Install dependencies & pre-commit hooks:
14
+
15
```shell
16
poetry install
17
18
+pre-commit install
19
20
21
3. (Optional) Activate the poetry virtual environment:
22
23
24
poetry shell
25
-4. Run tests:
-```shell
-pytest
-```
-4. Run mypy type checker:
26
27
+4. Run tests & mypy using tox:
28
-mypy .
29
+tox
30
0 commit comments