forked from pangeo-data/climpred
-
Notifications
You must be signed in to change notification settings - Fork 0
128 lines (122 loc) · 3.83 KB
/
climpred_testing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: climpred testing # based on https://github.com/pydata/xarray/blob/master/.github/workflows/ci.yaml
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
workflow_dispatch: # allows you to trigger manually
jobs:
detect-ci-trigger:
name: detect ci trigger
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event_name == 'pull_request'
outputs:
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: xarray-contrib/ci-trigger@v1.1
id: detect-trigger
with:
keyword: "[skip-ci]"
test: # Runs testing suite on various python versions.
name: Test climpred, python ${{ matrix.python-version }}
runs-on: ubuntu-latest
needs: detect-ci-trigger
if: needs.detect-ci-trigger.outputs.triggered == 'false'
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all history for all branches and tags.
- name: Set up conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: false
channels: conda-forge
mamba-version: '*'
activate-environment: climpred-minimum-tests
python-version: ${{ matrix.python-version }}
- name: Set up conda environment
run: |
mamba env update -f ci/requirements/minimum-tests.yml
- name: Conda info
run: conda info
- name: Conda list
run: conda list
- name: Cache datasets # pytest-xdist fails otherwise
run: python -c "import climpred; climpred.tutorial._cache_all()"
- name: Run tests
run: pytest -n 4 --durations=20 --cov=climpred --cov-report=xml
- name: Upload coverage to codecov
uses: codecov/codecov-action@v1.4.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
fail_ci_if_error: false
doctest: # tests all docstrings
name: Doctests
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
channels: conda-forge
channel-priority: strict
mamba-version: "*"
activate-environment: climpred-minimum-tests
auto-update-conda: false
python-version: "3.8"
- name: Install conda dependencies
run: |
mamba env update -f ci/requirements/minimum-tests.yml
- name: Install climpred
run: |
python -m pip install --no-deps -e .
- name: Conda info
run: conda info
- name: Conda list
run: conda list
- name: Run doctests
run: |
python -m pytest --doctest-modules climpred --ignore climpred/tests
docs_notebooks: # Checks that pre-compiled notebooks in docs still work.
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: false
channels: conda-forge
mamba-version: '*'
activate-environment: climpred-docs-notebooks
python-version: 3.8
- name: Set up conda environment
run: |
mamba env update -f ci/requirements/docs_notebooks.yml
- name: Conda info
run: conda info
- name: Conda list
run: conda list
- name: Test notebooks in docs
run: |
pushd docs
nbstripout source/*.ipynb source/examples/decadal/*.ipynb
make -j4 html
popd