Skip to content

Commit

Permalink
chore!: rename optional dependency
Browse files Browse the repository at this point in the history
* `test` -> `tests`
  • Loading branch information
korikuzma committed Dec 30, 2024
1 parent 9690f95 commit 3bc36ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 3bc36ce

Please sign in to comment.