Skip to content

Commit

Permalink
Fix CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
nichollsh committed Sep 6, 2024
1 parent 40989a3 commit 3ce1862
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests for PROTEUS
name: Tests for CALLIOPE

on:
push:
Expand All @@ -24,12 +24,10 @@ jobs:
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
with:
submodules: 'false'
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -39,13 +37,13 @@ jobs:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}

- name: Install dependencies
if: steps.cache-virtualenv.outputs.cache-hit != 'true'
run: |
python -m pip install -e .[develop]
# - name: Install dependencies
# if: steps.cache-virtualenv.outputs.cache-hit != 'true'
# run: |

- name: Test with pytest
run: |
python -m pip install -e .[develop]
coverage run -m pytest
- name: Report coverage
Expand Down

0 comments on commit 3ce1862

Please sign in to comment.