Skip to content

365 potentially remove interactionvaluesvalues #27

365 potentially remove interactionvaluesvalues

365 potentially remove interactionvaluesvalues #27

# This workflow will run the shapiq tests on windows.
name: tests-shapiq-windows
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
unit_tests:
name: Run unit tests
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python and uv
id: setup-uv-python
uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
# we need to reinstall Python on Windows because of some problems with tkinter
# https://github.com/astral-sh/uv/issues/7036
- name: Reinstall Python
run: |
uv python install --reinstall
uv run python --version
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Test with pytest
run: uv run pytest "tests/shapiq" -n logical