Skip to content

Commit

Permalink
fixed running tests in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
davyd_davyd committed Nov 24, 2024
1 parent 0656cb6 commit e1bb29a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ runs:
using: "composite"
steps:
# Must be run after the `setup_python_and_poetry` action.
- name: Install dependencies
run: poetry install --with test
shell: bash
- name: Install Pydantic ${{ inputs.pydantic-version }}
run: pip install pydantic[email]==${{ inputs.pydantic-version }}
shell: bash
- name: Install dependencies
run: poetry install --only test
shell: bash
- name: Tests
run: pytest
shell: bash

0 comments on commit e1bb29a

Please sign in to comment.