Skip to content

Commit

Permalink
add back in windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
blaylockbk committed Jul 6, 2024
1 parent d6e0412 commit 9061d87
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/tests-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12"]
# In order to save resources, only run particular
# matrix slots on other OS than Linux.
#include:
include:
# - os: "macos-latest"
# python-version: "3.12"
# - os: "windows-latest"
# python-version: "3.12"
- os: "windows-latest"
python-version: "3.12"

env:
OS: ${{ matrix.os }}
Expand Down Expand Up @@ -64,12 +64,12 @@ jobs:
# run: |
# pip3 install --break-system-packages --requirement=requirements-test.txt
# pip3 install --break-system-packages --editable=.
#
#- name: Install project (Windows)
# if: runner.os == "Windows"
# run: |
# pip3 install --requirement=requirements-test.txt
# pip3 install --editable=.
#
- name: Install project (Windows)
if: ${{ runner.os }} == "Windows"
run: |
pip3 install --requirement=requirements-test.txt
pip3 install --editable=.
- name: Run tests
env:
Expand Down

0 comments on commit 9061d87

Please sign in to comment.