Skip to content

Commit

Permalink
Ensure Poetry installs dependencies for a specific Python version (#3)
Browse files Browse the repository at this point in the history
* Ensure Poetry installs dependencies for a specific Python version

* revert: Add Python 3.7 to test matrix

* Don't stop other Python version tests when one fails

* Revert "revert: Add Python 3.7 to test matrix"

This reverts commit 240c3a1.
  • Loading branch information
ReubenFrankel authored Feb 10, 2024
1 parent b619683 commit fd9a221
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
continue-on-error: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
strategy:
Expand All @@ -24,6 +25,7 @@ jobs:
pip install poetry
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install
- name: Test with pytest
run: |
Expand Down

0 comments on commit fd9a221

Please sign in to comment.