diff --git a/poetry.lock b/poetry.lock index 69c8f9c1..a5b82be1 100644 --- a/poetry.lock +++ b/poetry.lock @@ -273,13 +273,13 @@ files = [ [[package]] name = "pytest" -version = "8.3.2" +version = "8.3.3" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5"}, - {file = "pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce"}, + {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, + {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, ] [package.dependencies] @@ -385,4 +385,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "59f459a5a29a41f55bb9f5db7cb6ec0ad93a20b6ad7f68d9ec511068ec08a956" +content-hash = "9a3e2e84fb107f20d234d69ff53c8b0f3f991322a46c72520e66268bb94d8061" diff --git a/pyproject.toml b/pyproject.toml index 7aa7d483..3a50b28c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ codespell = "^2.3.0" black = "^24.8" flake8 = "^7.1.1" pep8-naming = "^0.14.1" -pytest = "^8.3.2" +pytest = "^8.3.3" GitPython = "^3.1.43" [build-system] diff --git a/workflow-templates/test-go-integration-task.md b/workflow-templates/test-go-integration-task.md index 4c9c6b99..20186398 100644 --- a/workflow-templates/test-go-integration-task.md +++ b/workflow-templates/test-go-integration-task.md @@ -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. diff --git a/workflow-templates/test-python-poetry-task.md b/workflow-templates/test-python-poetry-task.md index eeef64e6..a75eefd0 100644 --- a/workflow-templates/test-python-poetry-task.md +++ b/workflow-templates/test-python-poetry-task.md @@ -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.