Skip to content

Commit

Permalink
CI: Fix deps installation #1196
Browse files Browse the repository at this point in the history
  • Loading branch information
dennissiemensma committed Jun 5, 2024
1 parent 1d82188 commit c23a3e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,13 @@ jobs:

- name: Install dependencies
run: |
cp $GITHUB_WORKSPACE/src/pyproject.toml .
cp $GITHUB_WORKSPACE/src/poetry.lock .
pip install --upgrade pip poetry
poetry config virtualenvs.in-project true
poetry check
poetry run pip install -r $GITHUB_WORKSPACE/dsmrreader/provisioning/requirements/base.txt -r $GITHUB_WORKSPACE/dsmrreader/provisioning/requirements/dev.txt
poetry self add poetry-plugin-export
poetry install --no-root --with dev
- name: Check flake8
run: poetry run flake8
Expand Down

0 comments on commit c23a3e6

Please sign in to comment.