Skip to content

Commit

Permalink
Use uv for unit tests
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Mueller <johannes.mueller4@de.bosch.com>
  • Loading branch information
johannes-mueller committed Dec 16, 2024
1 parent 936159c commit 7105f95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install python essentials
run: |
python -m pip install --upgrade pip
pip install -U setuptools setuptools_scm wheel
python -m pip install --upgrade pip uv
uv pip install -U setuptools setuptools_scm wheel
- name: Install dependencies complete
if: matrix.only-minimal != true
run: pip install -e .[all,testing]
run: uv pip install -e .[all,testing]
- name: Install dependencies minimal
if: matrix.only-minimal == true
run: pip install -e .[testing]
run: uv pip install -e .[testing]
- name: Unit tests
run: pytest
- name: Notebook flow tests
Expand Down

0 comments on commit 7105f95

Please sign in to comment.