82
82
parameters :
83
83
job_name : ubuntu18_cpython
84
84
image_name : ubuntu-18.04
85
- python_versions : ['3.6', '3. 7', '3.8', '3.9', '3.10']
85
+ python_versions : ['3.7', '3.8', '3.9', '3.10']
86
86
python_architecture : x64
87
87
test_suites :
88
88
all : venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
91
91
parameters :
92
92
job_name : ubuntu20_cpython
93
93
image_name : ubuntu-20.04
94
- python_versions : ['3.6', '3. 7', '3.8', '3.9', '3.10']
94
+ python_versions : ['3.7', '3.8', '3.9', '3.10']
95
95
python_architecture : x64
96
96
test_suites :
97
97
all : venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
@@ -100,7 +100,7 @@ jobs:
100
100
parameters :
101
101
job_name : macos1015_cpython_1
102
102
image_name : macos-10.15
103
- python_versions : ['3.6', '3. 7', '3.8']
103
+ python_versions : ['3.7', '3.8']
104
104
python_architecture : x64
105
105
test_suites :
106
106
all : venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
@@ -127,7 +127,7 @@ jobs:
127
127
parameters :
128
128
job_name : win2019_cpython_1
129
129
image_name : windows-2019
130
- python_versions : ['3.6', '3. 7', '3.8']
130
+ python_versions : ['3.7', '3.8']
131
131
python_architecture : x64
132
132
test_suites :
133
133
all : venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
@@ -169,7 +169,7 @@ jobs:
169
169
parameters :
170
170
job_name : ubuntu20_test_all_supported_click_versions
171
171
image_name : ubuntu-20.04
172
- python_versions : ['3.6', '3. 7', '3.8', '3.9', '3.10']
172
+ python_versions : ['3.7', '3.8', '3.9', '3.10']
173
173
python_architecture : x64
174
174
test_suites :
175
175
click_versions : |
@@ -181,128 +181,6 @@ jobs:
181
181
done
182
182
183
183
184
- # ###############################################################################
185
- # These jobs are using containers and their own Python 3.6
186
- # ###############################################################################
187
-
188
- # - template: etc/ci/azure-container-deb.yml
189
- # parameters:
190
- # job_name: ubuntu18c
191
- # container: ubuntu:bionic
192
- # python_path: python3.6
193
- # python_version: '3.6'
194
- # install_python: sudo apt-get install -y python3.6 python3.6-venv python3.6-dev
195
- # test_suite_label: all
196
- # test_suite: venv/bin/pytest -n 3 -vvs tests/scancode
197
-
198
-
199
- # - template: etc/ci/azure-container-deb.yml
200
- # parameters:
201
- # job_name: ubuntu20c
202
- # container: ubuntu:focal
203
- # python_path: python3.8
204
- # python_version: '3.8'
205
- # install_python: sudo apt-get install -y python3.8 python3.8-venv python3.8-dev
206
- # test_suite_label: all
207
- # test_suite: venv/bin/pytest -n 3 -vvs tests/scancode
208
-
209
-
210
- # - template: etc/ci/azure-container-rpm.yml
211
- # parameters:
212
- # job_name: centos7c
213
- # container: centos:7
214
- # python_path: python3.6
215
- # python_version: '3.6'
216
- # install_python: |
217
- # set -e -x
218
- # sudo yum install -y epel-release
219
- # sudo yum install -y python36 python36-devel python36-virtualenv
220
- # test_suite_label: all
221
- # test_suite: venv/bin/pytest -n 2 -vvs
222
- #
223
- # - template: etc/ci/azure-container-rpm.yml
224
- # parameters:
225
- # job_name: manylinux1_py36
226
- # container: quay.io/pypa/manylinux1_x86_64:latest
227
- # python_path: /opt/python/cp36-cp36m/bin/python
228
- # python_version: '3.6'
229
- # install_packages: echo "No extra packages for now"
230
- # install_python: echo "Python is pre-installed"
231
- # test_suite_label: all
232
- # test_suite: venv/bin/pytest -n 2 -vvs
233
- #
234
- # - template: etc/ci/azure-container-rpm.yml
235
- # parameters:
236
- # job_name: manylinux2010_py36
237
- # container: quay.io/pypa/manylinux2010_x86_64:latest
238
- # python_path: /opt/python/cp36-cp36m/bin/python
239
- # python_version: '3.6'
240
- # install_packages: echo "No extra packages for now"
241
- # install_python: echo "Python is pre-installed"
242
- # test_suite_label: all
243
- # test_suite: venv/bin/pytest -n 2 -vvs
244
-
245
-
246
- # ###############################################################################
247
- # These jobs are using containers and their own Python 3.7
248
- # ###############################################################################
249
-
250
- # - template: etc/ci/azure-container-rpm.yml
251
- # parameters:
252
- # job_name: fedora30c
253
- # container: fedora:30
254
- # package_manager: dnf
255
- # python_path: python3.7
256
- # python_version: '3.7'
257
- # install_python: |
258
- # set -e -x
259
- # sudo dnf install -y python3 python3-devel python3-virtualenv
260
- # test_suite_label: all
261
- # test_suite: venv/bin/pytest -n 2 -vvs
262
- #
263
- # - template: etc/ci/azure-container-rpm.yml
264
- # parameters:
265
- # job_name: manylinux2010_py37
266
- # container: quay.io/pypa/manylinux2010_x86_64:latest
267
- # python_path: /opt/python/cp37-cp37m/bin/python
268
- # python_version: '3.7'
269
- # install_packages: echo "No extra packages for now"
270
- # install_python: echo "Python is pre-installed"
271
- # test_suite_label: all
272
- # test_suite: venv/bin/pytest -n 2 -vvs
273
-
274
-
275
- # ###############################################################################
276
- # These jobs are using containers and their own Python 3.6: FAILING FOR NOW
277
- # ###############################################################################
278
-
279
- # here we build from sources
280
- # - template: etc/ci/azure-container-deb.yml
281
- # parameters:
282
- # job_name: debian9c
283
- # container: debian:stretch
284
- # python_path: python3.6
285
- # python_version: '3.6'
286
- # install_python: |
287
- # set -e -x
288
- # sudo apt-get install -y \
289
- # libncurses5-dev libncursesw5-dev libreadline6-dev \
290
- # libdb-dev libgdbm-dev libsqlite3-dev libssl-dev \
291
- # libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev \
292
- # libcurl4-openssl-dev libpam0g-dev \
293
- # libsqlite3-dev tk-dev libffi-dev \
294
- # curl
295
- # export PYVER=3.6.8
296
- # curl -o Python-$PYVER.tgz https://www.python.org/ftp/python/$PYVER/Python-$PYVER.tgz
297
- # tar -xvf Python-$PYVER.tgz
298
- # cd Python-$PYVER
299
- # ./configure --enable-optimizations
300
- # make -j8
301
- # sudo make altinstall
302
- # test_suite_label: basic tests
303
- # test_suite: venv/bin/pytest -n 2 -vvs
304
-
305
-
306
184
# ###############################################################################
307
185
# Tests using a plain pip install to get the latest of all wheels
308
186
# ###############################################################################
@@ -312,79 +190,47 @@ jobs:
312
190
parameters :
313
191
job_name : ubuntu18_cpython_latest_from_pip
314
192
image_name : ubuntu-18.04
315
- python_versions : ['3.6', '3. 7', '3.8', '3.9', '3.10']
193
+ python_versions : ['3.7', '3.8', '3.9', '3.10']
316
194
test_suites :
317
195
all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
318
196
319
197
- template : etc/ci/azure-posix.yml
320
198
parameters :
321
199
job_name : ubuntu20_cpython_latest_from_pip
322
200
image_name : ubuntu-20.04
323
- python_versions : ['3.6', '3.7', '3.8', '3.9', '3.10']
324
- test_suites :
325
- all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
326
-
327
- - template : etc/ci/azure-posix.yml
328
- parameters :
329
- job_name : macos1015_cpython_latest_from_pip1
330
- image_name : macos-10.15
331
- python_versions : ['3.6', '3.7']
201
+ python_versions : ['3.7', '3.8', '3.9', '3.10']
332
202
test_suites :
333
203
all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
334
204
335
205
- template : etc/ci/azure-posix.yml
336
206
parameters :
337
- job_name : macos1015_cpython_latest_from_pip2
207
+ job_name : macos1015_cpython_latest_from_pip
338
208
image_name : macos-10.15
339
- python_versions : ['3.8', '3.9', '3.10']
340
- test_suites :
341
- all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
342
-
343
- - template : etc/ci/azure-posix.yml
344
- parameters :
345
- job_name : macos11_cpython_latest_from_pip1
346
- image_name : macos-11
347
- python_versions : ['3.7', '3.8', ]
209
+ python_versions : ['3.7', '3.8', '3.9', '3.10']
348
210
test_suites :
349
211
all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
350
212
351
213
- template : etc/ci/azure-posix.yml
352
214
parameters :
353
- job_name : macos11_cpython_latest_from_pip2
215
+ job_name : macos11_cpython_latest_from_pip
354
216
image_name : macos-11
355
- python_versions : ['3.9', '3.10']
217
+ python_versions : ['3.7', '3.8', '3. 9', '3.10']
356
218
test_suites :
357
219
all : venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
358
220
359
221
- template : etc/ci/azure-win.yml
360
222
parameters :
361
- job_name : win2019_cpython_latest_from_pip1
362
- image_name : windows-2019
363
- python_versions : ['3.6', '3.7']
364
- test_suites :
365
- all : venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
366
-
367
- - template : etc/ci/azure-win.yml
368
- parameters :
369
- job_name : win2019_cpython_latest_from_pip2
223
+ job_name : win2019_cpython_latest_from_pip
370
224
image_name : windows-2019
371
- python_versions : ['3.8', '3.9', '3.10']
372
- test_suites :
373
- all : venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
374
-
375
- - template : etc/ci/azure-win.yml
376
- parameters :
377
- job_name : win2022_cpython_latest_from_pip1
378
- image_name : windows-2022
379
- python_versions : ['3.7', '3.8']
225
+ python_versions : ['3.7', '3.8', '3.9', '3.10']
380
226
test_suites :
381
227
all : venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
382
228
383
229
- template : etc/ci/azure-win.yml
384
230
parameters :
385
- job_name : win2022_cpython_latest_from_pip2
231
+ job_name : win2022_cpython_latest_from_pip
386
232
image_name : windows-2022
387
- python_versions : ['3.9', '3.10']
233
+ python_versions : ['3.7', '3.8', '3. 9', '3.10']
388
234
test_suites :
389
235
all : venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[dev] && venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
390
236
0 commit comments