Skip to content

Commit

Permalink
Update pytest version in template installation docs
Browse files Browse the repository at this point in the history
This is now the version used as standard in all Arduino Tooling projects, which the "template" is intended to be used
with.
  • Loading branch information
per1234 committed Sep 11, 2024
1 parent 88e21a4 commit 210bc7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions workflow-templates/test-go-integration-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ https://python-poetry.org/docs/#installation
If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands:

```
poetry init --python="^3.9" --dev-dependency="pytest@^8.3.2" --dev-dependency="invoke@^1.7.0"
poetry init --python="^3.9" --dev-dependency="pytest@^8.3.3" --dev-dependency="invoke@^1.7.0"
poetry install
```

If already using Poetry, add the tool using this command:

```
poetry add --dev "pytest@^8.3.2" "invoke@^1.7.0"
poetry add --dev "pytest@^8.3.3" "invoke@^1.7.0"
```

Commit the resulting `pyproject.toml` and `poetry.lock` files.
Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/test-python-poetry-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ https://python-poetry.org/docs/#installation
If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands:

```
poetry init --python="^3.9" --dev-dependency="pytest@^8.3.2"
poetry init --python="^3.9" --dev-dependency="pytest@^8.3.3"
poetry install
```

If already using Poetry, add the tool using this command:

```
poetry add --dev "pytest@^8.3.2"
poetry add --dev "pytest@^8.3.3"
```

Commit the resulting `pyproject.toml` and `poetry.lock` files.
Expand Down

0 comments on commit 210bc7f

Please sign in to comment.