Skip to content

Commit

Permalink
Rename file, try continue-on-error
Browse files Browse the repository at this point in the history
  • Loading branch information
sapols committed Jun 26, 2024
1 parent 1372a22 commit 212db4d
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,16 @@ jobs:
# pytest

- name: Clone and test pyspedas
continue-on-error: true
run: |
git clone https://github.com/spedas/pyspedas.git
cd PySPEDAS
cd pyspedas
pip install -r requirements.txt
pip install .
pytest
- name: Clone and test spacepy
continue-on-error: true
run: |
git clone https://github.com/spacepy/spacepy.git
cd spacepy
Expand All @@ -83,10 +85,11 @@ jobs:
pytest
- name: Clone and test sunpy
continue-on-error: true
run: |
git clone https://github.com/sunpy/sunpy.git
cd sunpy
# Extract dependencies from pyproject.toml
pip install -r requirements.txt
pip install -r <(python -c 'import sys; import tomli; print("\\n".join(tomli.load(open("pyproject.toml", "rb"))["project"]["dependencies"]))')
pip install .
pytest

0 comments on commit 212db4d

Please sign in to comment.