diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 88c818f..8e19cef 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -51,7 +51,7 @@ repos: # Generate requirements.txt for git-ci - id: poetry-export-git-ci-requirements name: Export dependencies with Poetry for git-ci - entry: bash -c 'cd src && poetry export --with ci_test -f requirements.txt --output requirements.txt && git diff --exit-code requirements.txt || git add requirements.txt' + entry: bash -c 'cd src && poetry export --with git_ci -f requirements.txt --output requirements.txt && git diff --exit-code requirements.txt || git add requirements.txt' language: system files: src/pyproject.toml$ pass_filenames: false diff --git a/src/pyproject.toml b/src/pyproject.toml index 49ff759..78f4c30 100644 --- a/src/pyproject.toml +++ b/src/pyproject.toml @@ -29,7 +29,7 @@ hypothesis = {extras = ["ghostwriter"], version = "^6.71.0"} ruff = "^0.0.267" # # Dependencies listed below are used for testing in github actions. -[tool.poetry.group.ci_test.dependencies] +[tool.poetry.group.git_ci.dependencies] python = "^3.10.10" pytest = "^7.2.2" black = "^23.1.0"