diff --git a/poetry.lock b/poetry.lock index 5e6cd490..54f19f6b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -271,13 +271,13 @@ files = [ [[package]] name = "pytest" -version = "7.4.3" +version = "7.4.4" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.4.3-py3-none-any.whl", hash = "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac"}, - {file = "pytest-7.4.3.tar.gz", hash = "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5"}, + {file = "pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8"}, + {file = "pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280"}, ] [package.dependencies] @@ -383,4 +383,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "0f47afefaa17c18e244f33dc0f136df436072892f35f453fd79783cd9d441100" +content-hash = "0bc3acb3d17717c8784eb34d8b361a691f23cc38d90d4331d3bfd5b13dee3924" diff --git a/pyproject.toml b/pyproject.toml index fb9808ae..d23f0b47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ codespell = "^2.2.6" black = "^23.12" flake8 = "^6.1.0" pep8-naming = "^0.13.3" -pytest = "^7.4.3" +pytest = "^7.4.4" GitPython = "^3.1.40" [build-system] diff --git a/workflow-templates/test-go-integration-task.md b/workflow-templates/test-go-integration-task.md index d2432fb0..17aca360 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.4.3" --dev-dependency="invoke@^1.7.0" +poetry init --python="^3.9" --dev-dependency="pytest@^7.4.4" --dev-dependency="invoke@^1.7.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "pytest@^7.4.3" "invoke@^1.7.0" +poetry add --dev "pytest@^7.4.4" "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 867acc20..ccf01dcb 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.4.3" +poetry init --python="^3.9" --dev-dependency="pytest@^7.4.4" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "pytest@^7.4.3" +poetry add --dev "pytest@^7.4.4" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.