From 212db4dc0cd50fc54baaa71313f8803ef04db35f Mon Sep 17 00:00:00 2001 From: sapols Date: Wed, 26 Jun 2024 12:09:10 -0600 Subject: [PATCH] Rename file, try continue-on-error --- .github/workflows/{test.yml => unit-tests.yml} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) rename .github/workflows/{test.yml => unit-tests.yml} (90%) diff --git a/.github/workflows/test.yml b/.github/workflows/unit-tests.yml similarity index 90% rename from .github/workflows/test.yml rename to .github/workflows/unit-tests.yml index 35091c3..3e05193 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/unit-tests.yml @@ -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 @@ -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 \ No newline at end of file