diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ecbcf5b1..5aede64e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,8 +50,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest==7.4.0 - pip install GitPython==3.1.40 + pip install pytest==7.4.0 GitPython==3.1.40 testpath==0.6.0 - name: Unit test run: make test diff --git a/tests/poetry.lock b/tests/poetry.lock index b1f19b2b8..7be8a7ebf 100644 --- a/tests/poetry.lock +++ b/tests/poetry.lock @@ -110,7 +110,21 @@ files = [ {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, ] +[[package]] +name = "testpath" +version = "0.6.0" +description = "Test utilities for code working with files and commands" +optional = false +python-versions = ">= 3.5" +files = [ + {file = "testpath-0.6.0-py3-none-any.whl", hash = "sha256:8ada9f80a2ac6fb0391aa7cdb1a7d11cfa8429f693eda83f74dde570fe6fa639"}, + {file = "testpath-0.6.0.tar.gz", hash = "sha256:2f1b97e6442c02681ebe01bd84f531028a7caea1af3825000f52345c30285e0f"}, +] + +[package.extras] +test = ["pytest"] + [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "74f2edc4f13d417cf488f33b42f1e0ef99293b4ddf0bf951c22cf671793c203a" +content-hash = "b7e7874dbe3c45aaa4d22378531624f0900b4c86600fbcb4b323ad5eaf616ca1" diff --git a/tests/pyproject.toml b/tests/pyproject.toml index f62842cf4..7e3b10ade 100644 --- a/tests/pyproject.toml +++ b/tests/pyproject.toml @@ -10,6 +10,7 @@ readme = "README.md" python = "^3.11" pytest = "7.4" gitpython = "3.1.40" +testpath = "0.6.0" [tool.pytest.ini_options] minversion = "7.4"