From aad712247072690c4e0cd83d5da70d7ecc4e0a3e Mon Sep 17 00:00:00 2001 From: Ryan Smith <43353432+ryansm1@users.noreply.github.com> Date: Tue, 9 Oct 2018 13:26:25 -0500 Subject: [PATCH] Relocate before_build section and add refreshenv command after chocolately installations --- appveyor.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a5a893b1..5f6aa065 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,12 +15,6 @@ init: - mkdir %DEPS% - set APPVEYOR=true -before_build: - - choco install rabbitmq --ignoredependencies -y - - choco install redis-64 - - redis-server --service-install - - redis-server --service-start - install: # Download and start a binary version of memcached. - ps: Invoke-WebRequest "https://s3.amazonaws.com/downloads.northscale.com/memcached-win64-1.4.4-14.zip" -OutFile "$ENV:DEPS\memcached.zip" @@ -51,6 +45,13 @@ install: - cd %PROJ% - "%CMD_IN_ENV% pip install -e .[dev]" +before_build: + - choco install rabbitmq --ignoredependencies -y + - choco install redis-64 + - redis-server --service-install + - redis-server --service-start + - refreshenv + build_script: - "%CMD_IN_ENV% python setup.py build"