We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca41b0e commit 91b5f53Copy full SHA for 91b5f53
.github/workflows/build_workflow.yml
@@ -51,6 +51,8 @@ jobs:
51
strategy:
52
matrix:
53
python-version: ["3.9", "3.10"]
54
+ container:
55
+ image: ghcr.io/e3sm-project/containers-e3sm-diags-test-data:e3sm-diags-test-data-0.0.2
56
steps:
57
- id: skip_check
58
uses: fkirc/skip-duplicate-actions@master
@@ -101,8 +103,9 @@ jobs:
101
103
run: pytest tests/e3sm_diags
102
104
105
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
- name: Download Integration Test Data
- run: python -m tests.integration.download_data
106
+ name: Copy Integration Test Data
107
+ run: |
108
+ cp -r /e3sm_diags_downloaded_data/tests/integration/* tests/integration/
109
110
111
name: Run Integration Tests
0 commit comments