From cfd8a88488d7c271c1a12a86aa77c399f09ebf1b Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Mon, 7 Sep 2020 11:10:15 +0200 Subject: [PATCH] cue-test: don't install Strawberry Perl on AppVeyor (on AppVeyor / VS2019, Strawberry is installed) --- cue-test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cue-test.py b/cue-test.py index 79f5fb0..809853b 100644 --- a/cue-test.py +++ b/cue-test.py @@ -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':