@@ -17,22 +17,22 @@ jobs:
1717 python_versions : ['3.6']
1818 test_suites :
1919 misc : |
20- bin/pytest -n 3 -vvs --reruns=2 -- test-suite=all \
20+ bin/pytest -n 3 -vvs --test-suite=all \
2121 --ignore=tests/scancode \
2222 --ignore=tests/cluecode \
2323 --ignore=tests/licensedcode
2424
2525 scancode : |
26- bin/pytest --reruns=2 - vvs --test-suite=all \
26+ bin/pytest -vvs --test-suite=all \
2727 tests/scancode
2828
2929 cluecode : |
30- bin/pytest -n 3 --reruns=2 - vvs --test-suite=all \
30+ bin/pytest -n 3 -vvs --test-suite=all \
3131 tests/cluecode \
3232 --cov=src --cov-report=term
3333
3434 license_base : |
35- bin/pytest -n 3 --reruns=2 - vvs --test-suite=all \
35+ bin/pytest -n 3 -vvs --test-suite=all \
3636 --ignore=tests/licensedcode/test_zzzz_cache.py \
3737 --ignore=tests/licensedcode/test_detection_datadriven_external.py \
3838 --ignore=tests/licensedcode/test_detection_datadriven1.py \
@@ -72,39 +72,108 @@ jobs:
7272 -k TestValidateLicenseExtended
7373
7474 license_cache : |
75- bin/pytest -n 3 --reruns=2 - vvs --test-suite=all \
75+ bin/pytest -n 3 -vvs --test-suite=all \
7676 tests/licensedcode/test_zzzz_cache.py
7777
7878 - template : etc/ci/azure-mac.yml
7979 parameters :
80- job_name : macos1015_py36
80+ job_name : macos_1014_py3x
81+ image_name : macos-10.14
82+ python_versions : ['3.6', '3.7', '3.8', '3.9']
83+ test_suites :
84+ all : bin/pytest -n 2 -vvs tests/scancode/test_cli.py
85+
86+
87+ - template : etc/ci/azure-mac.yml
88+ parameters :
89+ job_name : macos_1015_py3x
8190 image_name : macos-10.15
82- python_versions : ['3.6']
91+ python_versions : ['3.6', '3.7', '3.8', '3.9' ]
8392 test_suites :
84- all : bin/pytest -n 3 -vvs --reruns=2
93+ all : bin/pytest -n 2 -vvs tests/scancode/test_cli.py
94+
95+
96+ # - template: etc/ci/azure-mac.yml
97+ # parameters:
98+ # job_name: macos_110_py3x
99+ # image_name: macos-11.0
100+ # python_versions: ['3.6', '3.7', '3.8', '3.9']
101+ # test_suites:
102+ # all: bin/pytest -n 2 -vvs tests/scancode/test_cli.py
103+
85104
86105 - template : etc/ci/azure-win.yml
87106 parameters :
88- job_name : Win2016_py36
107+ job_name : win_2016_py3x
89108 image_name : vs2017-win2016
90- python_versions : ['3.6']
109+ python_versions : ['3.6', '3.7', '3.8', '3.9']
110+ python_architecture : x64
111+ test_suites :
112+ all : Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
113+
114+
115+ - template : etc/ci/azure-win.yml
116+ parameters :
117+ job_name : win_2019_py3x
118+ image_name : windows-2019
119+ python_versions : ['3.6', '3.7', '3.8', '3.9']
91120 python_architecture : x64
92121 test_suites :
93- all : Scripts\pytest -n 3 -vvs --reruns=2
122+ all : Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
123+
124+
125+ - template : etc/ci/azure-linux.yml
126+ parameters :
127+ job_name : vm_ubuntu16_py3x
128+ image_name : ubuntu-16.04
129+ python_versions : ['3.7', '3.8', '3.9']
130+ test_suites :
131+ all : bin/pytest -n 2 -vvs tests/scancode/test_cli.py
132+
133+
134+ - template : etc/ci/azure-linux.yml
135+ parameters :
136+ job_name : vm_ubuntu18_py3x
137+ image_name : ubuntu-18.04
138+ python_versions : ['3.6', '3.7', '3.8', '3.9']
139+ test_suites :
140+ all : bin/pytest -n 2 -vvs tests/scancode/test_cli.py
141+
142+
143+ - template : etc/ci/azure-linux.yml
144+ parameters :
145+ job_name : vm_ubuntu20_py3x
146+ image_name : ubuntu-20.04
147+ python_versions : ['3.6', '3.7', '3.8', '3.9']
148+ test_suites :
149+ all : bin/pytest -n 2 -vvs tests/scancode/test_cli.py
150+
94151
95152# ###############################################################################
96153# These jobs are using containers and their own Python 3.6
97154# ###############################################################################
98155
99- - template : etc/ci/azure-container-deb.yml
100- parameters :
101- job_name : ubuntu18_py36
102- container : ubuntu:bionic
103- python_path : python3.6
104- python_version : ' 3.6'
105- install_python : sudo apt-get install -y python3.6 python3.6-venv python3.6-dev
106- test_suite_label : all
107- test_suite : bin/pytest -n 3 -vvs --reruns=2
156+ # - template: etc/ci/azure-container-deb.yml
157+ # parameters:
158+ # job_name: ubuntu18_py36
159+ # container: ubuntu:bionic
160+ # python_path: python3.6
161+ # python_version: '3.6'
162+ # install_python: sudo apt-get install -y python3.6 python3.6-venv python3.6-dev
163+ # test_suite_label: all
164+ # test_suite: bin/pytest -n 3 -vvs tests/scancode
165+
166+
167+ # - template: etc/ci/azure-container-deb.yml
168+ # parameters:
169+ # job_name: ubuntu20_py38
170+ # container: ubuntu:focal
171+ # python_path: python3.8
172+ # python_version: '3.8'
173+ # install_python: sudo apt-get install -y python3.8 python3.8-venv python3.8-dev
174+ # test_suite_label: all
175+ # test_suite: bin/pytest -n 3 -vvs tests/scancode
176+
108177
109178# - template: etc/ci/azure-container-rpm.yml
110179# parameters:
@@ -117,7 +186,7 @@ jobs:
117186# sudo yum install -y epel-release
118187# sudo yum install -y python36 python36-devel python36-virtualenv
119188# test_suite_label: all
120- # test_suite: bin/pytest -n 2 -vvs --reruns=3
189+ # test_suite: bin/pytest -n 2 -vvs
121190#
122191# - template: etc/ci/azure-container-rpm.yml
123192# parameters:
@@ -128,7 +197,7 @@ jobs:
128197# install_packages: echo "No extra packages for now"
129198# install_python: echo "Python is pre-installed"
130199# test_suite_label: all
131- # test_suite: bin/pytest -n 2 -vvs --reruns=3
200+ # test_suite: bin/pytest -n 2 -vvs
132201#
133202# - template: etc/ci/azure-container-rpm.yml
134203# parameters:
@@ -139,7 +208,7 @@ jobs:
139208# install_packages: echo "No extra packages for now"
140209# install_python: echo "Python is pre-installed"
141210# test_suite_label: all
142- # test_suite: bin/pytest -n 2 -vvs --reruns=3
211+ # test_suite: bin/pytest -n 2 -vvs
143212
144213
145214# ###############################################################################
@@ -157,7 +226,7 @@ jobs:
157226# set -e -x
158227# sudo dnf install -y python3 python3-devel python3-virtualenv
159228# test_suite_label: all
160- # test_suite: bin/pytest -n 2 -vvs --reruns=3
229+ # test_suite: bin/pytest -n 2 -vvs
161230#
162231# - template: etc/ci/azure-container-rpm.yml
163232# parameters:
@@ -168,7 +237,7 @@ jobs:
168237# install_packages: echo "No extra packages for now"
169238# install_python: echo "Python is pre-installed"
170239# test_suite_label: all
171- # test_suite: bin/pytest -n 2 -vvs --reruns=3
240+ # test_suite: bin/pytest -n 2 -vvs
172241
173242
174243# ###############################################################################
@@ -199,7 +268,7 @@ jobs:
199268# make -j8
200269# sudo make altinstall
201270# test_suite_label: basic tests
202- # test_suite: bin/pytest -n 2 -vvs --reruns=3
271+ # test_suite: bin/pytest -n 2 -vvs
203272
204273
205274# #######################################################################
0 commit comments