From 0bde97782df6c6a965d457763bf24da2bc30f7d4 Mon Sep 17 00:00:00 2001 From: Kori Kuzma Date: Tue, 31 Dec 2024 07:09:34 -0500 Subject: [PATCH] chore!: rename optional dependency (#450) * `test` -> `tests` --- .github/workflows/checks.yaml | 2 +- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 96a7b7bd..cd3eb471 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -25,7 +25,7 @@ jobs: - name: Install dependencies run: | - python3 -m pip install ".[etl,test]" + python3 -m pip install ".[etl,tests]" - name: Build local DynamoDB run: | diff --git a/README.md b/README.md index da417f41..37b25b05 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,7 @@ source venv/bin/activate Install development dependencies and `pre-commit`: ```shell -python3 -m pip install -e '.[dev,test]' +python3 -m pip install -e '.[dev,tests]' pre-commit install ``` diff --git a/pyproject.toml b/pyproject.toml index 2a3d08e7..965bbd4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ etl = [ "rich", "pyyaml" ] -test = ["pytest", "pytest-cov", "pytest-mock", "isodate"] +tests = ["pytest", "pytest-cov", "pytest-mock", "isodate"] dev = ["pre-commit>=3.7.1", "ruff==0.5.0", "lxml", "xmlformatter", "types-pyyaml"] [project.urls]