From 1e563202189a974fde678ff4af51070b80cde95d Mon Sep 17 00:00:00 2001 From: Brendt Wohlberg Date: Mon, 29 Apr 2024 10:17:57 -0600 Subject: [PATCH] Attempt to fix workflow --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index d34d559..58c6801 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: python-version: ["3.9", "3.10"] - os: [ubuntu-latest, macOS-latest] + os: [ubuntu-latest, macOS-latest, windows-latest] steps: - uses: actions/checkout@v3 @@ -27,7 +27,7 @@ jobs: run: | conda install -c conda-forge pytest pytest-cov python -m pip install --upgrade pip - pip install pytest-cov + pip install pytest-cov setuptools pip install -r requirements.txt pip install -e . - name: Unit tests