Skip to content

Commit

Permalink
still messing with GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
blaylockbk committed Jul 6, 2024
1 parent 4b00c57 commit d6e0412
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/tests-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@ jobs:
cache-dependency-path: "setup.cfg"

- name: Install project (Linux)
if: runner.os == 'Linux'
if: ${{ runner.os }} == 'Linux'
run: |
pip3 install --requirement=requirements-test.txt
pip3 install --editable=.
- name: Install project (macOS)
if: runner.os == "macOS"
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 (macOS)
# if: runner.os == "macOS"
# 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: Run tests
env:
Expand Down

0 comments on commit d6e0412

Please sign in to comment.