Skip to content

Commit

Permalink
Fix comparison CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
Vopaaz committed Nov 16, 2023
1 parent ce38a2e commit 674ef3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
pip install -r requirements.txt
- name: Install comparison dependencies
if: ${{ matrix.python-version }} != '3.12'
if: ${{ matrix.python-version != '3.12' }}
run: |
pip install -r dev-requirements.txt
pip install -r comparison-requirements.txt
- name: Run unit tests
run: pytest tests/ checkpointing/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
pip install -r requirements.txt
- name: Install comparison dependencies
if: ${{ matrix.python-version }} != '3.12'
if: ${{ matrix.python-version != '3.12' }}
run: |
pip install -r dev-requirements.txt
pip install -r comparison-requirements.txt
- name: Run unit tests
run: pytest tests/ checkpointing/
Expand Down
File renamed without changes.

0 comments on commit 674ef3e

Please sign in to comment.