Skip to content

Commit

Permalink
Attempt to resolve CI test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Sep 5, 2024
1 parent 74840b9 commit 0e7c845
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
pip install pytest-split
pip install -r requirements.txt
pip install -r dev_requirements.txt
mamba install -c conda-forge svmbir>=0.3.3
# mamba install -c conda-forge svmbir>=0.3.3
mamba install -c astra-toolbox astra-toolbox
mamba install -c conda-forge pyyaml
pip install --upgrade --force-reinstall scipy>=1.6.0 # Temporary fix for GLIBCXX_3.4.30 not found in conda forge version
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pytest_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
pytest -x --cov --level=2 --durations-path=$DURATIONS_FILE --splits=5 --group=${{ matrix.group }} --pyargs scico
# Upload coverage data
- name: Upload coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage${{ matrix.group }}
path: .coverage
Expand All @@ -107,9 +107,10 @@ jobs:
pip install coverage
- name: Download all artifacts
# Downloads coverage1, coverage2, etc.
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: Run coverage
run: |
ls -R
coverage combine coverage*/.coverage*
coverage report
coverage xml
Expand Down

0 comments on commit 0e7c845

Please sign in to comment.