diff --git a/poetry.lock b/poetry.lock index 39f5d2fe..5fafd141 100644 --- a/poetry.lock +++ b/poetry.lock @@ -271,13 +271,13 @@ files = [ [[package]] name = "pytest" -version = "7.3.2" +version = "7.4.0" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.3.2-py3-none-any.whl", hash = "sha256:cdcbd012c9312258922f8cd3f1b62a6580fdced17db6014896053d47cddf9295"}, - {file = "pytest-7.3.2.tar.gz", hash = "sha256:ee990a3cc55ba808b80795a79944756f315c67c12b56abd3ac993a7b8c17030b"}, + {file = "pytest-7.4.0-py3-none-any.whl", hash = "sha256:78bf16451a2eb8c7a2ea98e32dc119fd2aa758f1d5d66dbf0a59d69a3969df32"}, + {file = "pytest-7.4.0.tar.gz", hash = "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a"}, ] [package.dependencies] @@ -384,4 +384,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "907f23b90e0d82cd6eac5dc4df4528fb06a3b1f81ec21d259e212defa27f9f3e" +content-hash = "a0b0f28cf2066438757d5f9134f7a6e9cef739098e7de4ad7456966746d49db6" diff --git a/pyproject.toml b/pyproject.toml index ad8ba7d5..f0dee85d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ codespell = "^2.2.5" black = "^23.3" flake8 = "^6.0.0" pep8-naming = "^0.13.3" -pytest = "^7.3.2" +pytest = "^7.4.0" 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 6694f4be..c1ec8a0c 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.3.2" --dev-dependency="invoke@^1.7.0" +poetry init --python="^3.9" --dev-dependency="pytest@^7.4.0" --dev-dependency="invoke@^1.7.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "pytest@^7.3.2" "invoke@^1.7.0" +poetry add --dev "pytest@^7.4.0" "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 378baeb5..893760d5 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.3.2" +poetry init --python="^3.9" --dev-dependency="pytest@^7.4.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "pytest@^7.3.2" +poetry add --dev "pytest@^7.4.0" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.