Skip to content

Commit

Permalink
fix: add dev poetry group to install all dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfonseca committed Oct 14, 2022
1 parent 32d5d05 commit f815d31
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 72 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ target:

dev:
pip install --upgrade pip pre-commit poetry
poetry install --extras "all"
poetry install --extras "dev"
pre-commit install

dev-gitpod:
pip install --upgrade pip poetry
poetry install --extras "all"
poetry install --extras "dev"
pre-commit install

format:
Expand Down
121 changes: 51 additions & 70 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,10 @@ parser = ["pydantic"]
validation = ["fastjsonschema"]
tracer = ["aws-xray-sdk"]
all = ["pydantic", "aws-xray-sdk", "fastjsonschema"]
dev = ["boto3", "pydantic", "email-validator", "aws-xray-sdk", "fastjsonschema"]
# allow customers to run code locally without emulators (SAM CLI, etc.)
aws-sdk = ["boto3"]

[tool.coverage.run]
source = ["aws_lambda_powertools"]
omit = ["tests/*", "aws_lambda_powertools/exceptions/*", "aws_lambda_powertools/utilities/parser/types.py", "aws_lambda_powertools/utilities/jmespath_utils/envelopes.py"]
Expand Down

0 comments on commit f815d31

Please sign in to comment.