cue-test: don't install Strawberry Perl on AppVeyor
(on AppVeyor / VS2019, Strawberry is installed)
This commit is contained in:
@@ -689,7 +689,10 @@ class TestSetupForBuild(unittest.TestCase):
|
|||||||
args = Namespace(paths=[])
|
args = Namespace(paths=[])
|
||||||
cue.building_base = True
|
cue.building_base = True
|
||||||
if ci_os == 'windows':
|
if ci_os == 'windows':
|
||||||
sp.check_call(['choco', 'install', 'make', 'strawberryperl', '-ry'])
|
choco_installs = ['make']
|
||||||
|
if ci_service != 'appveyor':
|
||||||
|
choco_installs.append('strawberryperl')
|
||||||
|
sp.check_call(['choco', 'install', '-ry'] + choco_installs)
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
if ci_service == 'appveyor':
|
if ci_service == 'appveyor':
|
||||||
|
|||||||
Reference in New Issue
Block a user