forked from lmfit/lmfit-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
230 lines (218 loc) · 8.28 KB
/
azure-pipelines.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
stages:
- stage: check_codestyle
jobs:
- job: pre_commit
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.9'
- script: |
python -m pip install --upgrade pip setuptools wheel
pip install pre-commit
displayName: 'Install Python dependencies'
- script: |
pre-commit install ; pre-commit run --all-files
displayName: 'Run pre-commit hooks'
- stage: build_documentation
jobs:
- job: build_documentation
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.9'
- script: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements-dev.txt
displayName: 'Install Python dependencies'
- script: |
python setup.py install
displayName: 'Install lmfit'
- script: |
sudo apt install -qq -y texlive-latex-extra latexmk
displayName: 'Install TeX Live'
- script: |
cd doc ; make all
displayName: 'Build the documentation'
- stage: tests_minimum_dependencies
dependsOn: check_codestyle
jobs:
- job:
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
sudo apt update && sudo apt install -yq --no-install-suggests --no-install-recommends \
libatlas-base-dev liblapack-dev gfortran libgmp-dev libmpfr-dev libsuitesparse-dev ccache \
swig libmpc-dev
displayName: 'Install dependencies'
- script: |
python -m pip install --upgrade pip setuptools wheel
pip install asteval==0.9.22 numpy==1.18 scipy==1.3.2 uncertainties==3.0.1 pytest coverage codecov
displayName: 'Install minimum required version of dependencies'
- script: |
python setup.py install
displayName: 'Install lmfit'
- script: |
pip list
displayName: 'List installed Python packages'
- script: |
pip install pytest-azurepipelines pytest-cov
pytest
displayName: 'Run test-suite and collect coverage'
- script: |
bash <(curl -s https://codecov.io/bash)
displayName: 'Upload to codecov.io'
- stage: tests_latest_dependencies
dependsOn: check_codestyle
jobs:
- job:
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
sudo apt update && sudo apt install -yq --no-install-suggests --no-install-recommends \
libatlas-base-dev liblapack-dev gfortran libgmp-dev libmpfr-dev libsuitesparse-dev ccache \
swig libmpc-dev
displayName: 'Install dependencies'
- script: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements-dev.txt
displayName: 'Install latest available version of Python dependencies'
- script: |
python setup.py install
displayName: 'Install lmfit'
- script: |
pip list
displayName: 'List installed Python packages'
- script: |
pip install pytest-azurepipelines pytest-cov
pytest
displayName: 'Run test-suite and collect coverage'
- script: |
bash <(curl -s https://codecov.io/bash)
displayName: 'Upload to codecov.io'
- stage: test_Windows_latest
dependsOn: check_codestyle
jobs:
- job:
pool:
vmImage: 'windows-latest'
strategy:
matrix:
Python39:
python.version: '3.9'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements-dev.txt
displayName: 'Install latest available version of Python dependencies'
- script: |
python setup.py install
displayName: 'Install lmfit'
- script: |
pip list
displayName: 'List installed Python packages'
- script: |
pip install pytest-azurepipelines pytest-cov
pytest
displayName: 'Run test-suite'
- powershell:
cd doc ; .\make.bat html
displayName: 'Build the HTML documentation'
- stage: development_version
dependsOn: check_codestyle
jobs:
- job: Python310_dev
pool:
vmImage: 'ubuntu-latest'
steps:
- script: |
sudo add-apt-repository ppa:deadsnakes/nightly
sudo apt-get update
sudo apt-get install -y --no-install-recommends python3.10-dev python3.10-distutils
displayName: Install Python development version from the deadsnakes PPA
- script: |
sudo apt update && sudo apt install -yq --no-install-suggests --no-install-recommends \
libatlas-base-dev liblapack-dev gfortran libgmp-dev libmpfr-dev libsuitesparse-dev ccache \
swig libmpc-dev
displayName: 'Install dependencies'
- script: |
export PATH=/home/vsts/.local/bin:$PATH
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3.10 get-pip.py --user
pip3.10 install -U pip setuptools wheel pybind11 cython pythran
displayName: 'Install pip, setuptools, wheel, pybind11, cython, and pythran'
- script: |
export PATH=/home/vsts/.local/bin:$PATH
export numpy_version=1.21.0
wget https://github.com/numpy/numpy/releases/download/v${numpy_version}/numpy-${numpy_version}.tar.gz
tar xzvf numpy-${numpy_version}.tar.gz
cd numpy-${numpy_version}
python3.10 setup.py install --user
displayName: 'Install latest available version of NumPy'
- script: |
export PATH=/home/vsts/.local/bin:$PATH
export scipy_version=1.7.0
wget https://github.com/scipy/scipy/releases/download/v${scipy_version}/scipy-${scipy_version}.tar.gz
tar xzvf scipy-${scipy_version}.tar.gz
cd scipy-${scipy_version}
python3.10 setup.py install --user
displayName: 'Install latest available version of SciPy'
- script: |
export PATH=/home/vsts/.local/bin:$PATH
# remove numdifftools for now as it pulls in statsmodels, that wants to build with NumPy 1.14.5
pip3.10 install asteval uncertainties dill emcee
displayName: 'Install latest available version of Python dependencies'
- script: |
python3.10 setup.py install --user
displayName: 'Install lmfit'
- script: |
export PATH=/home/vsts/.local/bin:$PATH
pip3.10 list
displayName: 'List installed Python packages'
- script: |
export PATH=/home/vsts/.local/bin:$PATH
pip3.10 install pytest pytest-azurepipelines pytest-cov
cd $(Agent.BuildDirectory)/s/tests
pytest || echo -e "\043#vso[task.logissue type=warning;] Allowed failure for development version!!"
displayName: 'Run test-suite'