diff --git a/poetry.lock b/poetry.lock index 475a9b34..b28abb6c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -306,14 +306,14 @@ files = [ [[package]] name = "pytest" -version = "7.2.1" +version = "7.2.2" description = "pytest: simple powerful testing with Python" category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.2.1-py3-none-any.whl", hash = "sha256:c7c6ca206e93355074ae32f7403e8ea12163b1163c976fee7d4d84027c162be5"}, - {file = "pytest-7.2.1.tar.gz", hash = "sha256:d45e0952f3727241918b8fd0f376f5ff6b301cc0777c6f9a556935c92d8a7d42"}, + {file = "pytest-7.2.2-py3-none-any.whl", hash = "sha256:130328f552dcfac0b1cec75c12e3f005619dc5f874f0a06e8ff7263f0ee6225e"}, + {file = "pytest-7.2.2.tar.gz", hash = "sha256:c99ab0c73aceb050f68929bc93af19ab6db0558791c6a0715723abe9d0ade9d4"}, ] [package.dependencies] @@ -441,4 +441,4 @@ setuptools = "*" [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "9e7a8cf7bec0c7054a00289ebbd1ab7f647536116e586347a52b94aec85ee109" +content-hash = "73a5333d4bd219e23aea5be6fdb54b15c04d4bf524ff7255effe067a3a827bc5" diff --git a/pyproject.toml b/pyproject.toml index 8360a2e3..f63cc469 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ codespell = "^2.2.2" black = "^23.1" flake8 = "^6.0.0" pep8-naming = "^0.13.3" -pytest = "^7.2.1" +pytest = "^7.2.2" GitPython = "^3.1.31" [build-system] diff --git a/workflow-templates/test-go-integration-task.md b/workflow-templates/test-go-integration-task.md index 3995bce2..08b49ad4 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@^7.2.1" --dev-dependency="invoke@^1.7.0" +poetry init --python="^3.9" --dev-dependency="pytest@^7.2.2" --dev-dependency="invoke@^1.7.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "pytest@^7.2.1" "invoke@^1.7.0" +poetry add --dev "pytest@^7.2.2" "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 c4f59fc5..e26e914d 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@^7.2.1" +poetry init --python="^3.9" --dev-dependency="pytest@^7.2.2" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "pytest@^7.2.1" +poetry add --dev "pytest@^7.2.2" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.