cue-test: don't install Strawberry Perl on AppVeyor

(on AppVeyor / VS2019, Strawberry is installed)
This commit is contained in:
Ralph Lange
2020-09-07 11:10:15 +02:00
parent 54a104e0a6
commit cfd8a88488

View File

@@ -689,7 +689,10 @@ class TestSetupForBuild(unittest.TestCase):
args = Namespace(paths=[])
cue.building_base = True
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):
if ci_service == 'appveyor':