Skip to content

Commit

Permalink
chore(deps): Add dev dependencies to poetry
Browse files Browse the repository at this point in the history
We need to have both ruff and black for the quality check and format, as
detailed in the `justfile`. However, none of them are present in the
poetry configuration.

We add them in a dedicated dev group, and update the `setup-dev` to take
them into account.
  • Loading branch information
gheritarish authored and ThomAub committed Oct 17, 2023
1 parent 543c9ce commit d17c73e
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 10 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export DAGSTER_S3_ENDPOINT_URL := "http://minio:9000"
### Python Virtual environment Setup ###
setup-dev:
source .venv/bin/activate
poetry install
poetry install --with dev

quality-format:
ruff --fix-only --exit-zero .
Expand Down Expand Up @@ -58,4 +58,4 @@ terraform-up:
#!/usr/bin/env bash
set -euxo pipefail
cd tf
terraform apply
terraform apply
Loading

0 comments on commit d17c73e

Please sign in to comment.