Skip to content

Commit

Permalink
ci: attempt unit test fix (#1414)
Browse files Browse the repository at this point in the history
ci: unit tests broken, attempt fix by running setup python before install poetry
  • Loading branch information
zaro0508 committed Jan 15, 2024
1 parent e64c9f4 commit 0549a32
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,15 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --no-interaction --all-extras
- name: Setup Python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'poetry'
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --no-interaction --all-extras
- name: run python tests
run: poetry run tox -e py
- name: run python test report
Expand Down

0 comments on commit 0549a32

Please sign in to comment.