Skip to content

updated tests that failed on win due to pycolmap #213

updated tests that failed on win due to pycolmap

updated tests that failed on win due to pycolmap #213

Workflow file for this run

name: run-test-win
on:
push:
branches: "*" # Run on all branches
pull_request:
branches: [master, dev]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip" # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Test with pytest
run: |
pytest