365 potentially remove interactionvaluesvalues #27
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |