Skip to content

Commit

Permalink
installs dev deps in github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolfix committed Nov 24, 2022
1 parent 3dd61f9 commit 3f6a72e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

- name: Install dependencies
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-dev
run: poetry install --no-interaction

# - name: Install self
# run: poetry install --no-interaction
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_loader_bigquery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Install dependencies
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-dev -E bigquery
run: poetry install --no-interaction -E bigquery

# - name: Install self
# run: poetry install --no-interaction
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_loader_redshift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Install dependencies
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-dev -E redshift
run: poetry install --no-interaction -E redshift

# - name: Install self
# run: poetry install --no-interaction
Expand Down

0 comments on commit 3f6a72e

Please sign in to comment.