Skip to content

Commit

Permalink
make workflows install dev packages
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenDoornbos committed Oct 3, 2024
1 parent 2962eb1 commit 1afff20
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,21 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies

- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Test with pytest
pip install poetry
- name: Install dependencies
run: |
poetry install --with dev
- name: Run tests
run: |
pytest
poetry run pytest

0 comments on commit 1afff20

Please sign in to comment.