Test Windows 2012+ using Azure by default.

This commit is contained in:
Matt Clay 2018-01-29 16:00:41 -08:00
parent 7fa09390b0
commit 3b0dcf7f29

View file

@ -73,6 +73,9 @@ class AnsibleCoreCI(object):
azure=(
'azure',
'rhel',
'windows/2012',
'windows/2012-R2',
'windows/2016',
),
parallels=(
'osx',
@ -88,6 +91,11 @@ class AnsibleCoreCI(object):
# assign default provider based on platform
self.provider = candidate
break
for candidate in providers:
if '%s/%s' % (platform, version) in providers[candidate]:
# assign default provider based on platform and version
self.provider = candidate
break
if self.provider in ('aws', 'azure'):
if self.provider != 'aws':