From 7a38f45b598200fdfe1c488091b7177cd07f63b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 12:40:53 +0545 Subject: [PATCH] build(deps-dev): update pytest-docker requirement from <2,>=1 to >=1,<4 (#62) * build(deps-dev): update pytest-docker requirement from <2,>=1 to >=1,<4 Updates the requirements on [pytest-docker](https://github.com/avast/pytest-docker) to permit the latest version. - [Release notes](https://github.com/avast/pytest-docker/releases) - [Changelog](https://github.com/avast/pytest-docker/blob/master/CHANGELOG.md) - [Commits](https://github.com/avast/pytest-docker/compare/v1.0.0...v3.1.1) --- updated-dependencies: - dependency-name: pytest-docker dependency-type: direct:production ... Signed-off-by: dependabot[bot] * run one test at a time --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: skshetry <18718008+skshetry@users.noreply.github.com> --- .github/workflows/tests.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 67db83f..8c4395b 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -49,7 +49,7 @@ jobs: - name: run tests timeout-minutes: 40 - run: pytest -v -n=auto --cov-report=xml --cov-report=term + run: pytest -v --cov-report=xml --cov-report=term - name: upload coverage report uses: codecov/codecov-action@v3 diff --git a/pyproject.toml b/pyproject.toml index 41b7f86..46c1303 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ tests = [ "pytest-cov>=4.1.0", "pytest-xdist>=3.2", "pytest-mock", - "pytest-docker>=1,<2", + "pytest-docker>=1,<4", ] [project.urls]