Skip to content

Commit

Permalink
let's see if caching actually works ...
Browse files Browse the repository at this point in the history
  • Loading branch information
romanc committed Feb 10, 2025
1 parent cc7fb8e commit 1dc8186
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/translate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ jobs:
path: pyFV3/${{inputs.component_name}}

- name: External trigger install NDSL packages
if: False # ${{inputs.component_trigger}}
if: ${{inputs.component_trigger}}
run: |
cd ${GITHUB_WORKSPACE}/pyFV3
cd NDSL && pip3 install .[test] && cd ../
pip3 install .[test]
- name: Install pyFV3 packages
if: False # ${{ ! inputs.component_trigger }}
if: ${{ ! inputs.component_trigger }}
run : |
cd ${GITHUB_WORKSPACE}/pyFV3
pip install .[ndsl,test]
Expand All @@ -73,9 +73,10 @@ jobs:
ls -l
- name: NumPy FvTp2d
if: False
run: |
ls -l
cd ${GITHUB_WORKSPACE}/pyFV3
ls -l
coverage run --rcfile=setup.cfg -m pytest \
-v -s --data_path=${{ env.DATA_PATH }} \
--backend=numpy \
Expand Down

0 comments on commit 1dc8186

Please sign in to comment.