Skip to content

Commit

Permalink
Update workflow to use Poetry for dependency management and run tests…
Browse files Browse the repository at this point in the history
… with pytest
  • Loading branch information
sisoe24 committed Dec 25, 2023
1 parent 56f90c7 commit ee5eddb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/github_tests_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@ jobs:
- name: Install Poetry
run: |
pip install --upgrade pip
pip install tox
pip install poetry
- name: Run tox
- name: Install dependencies
run: |
tox
poetry install
- name: Run tests
run: |
poetry run pytest

0 comments on commit ee5eddb

Please sign in to comment.