From d5dfcef1a46b0df7e13546a9887b372db3469ab0 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 11 Jul 2016 15:59:05 -0400 Subject: [PATCH] Appveyor: this-time-for-sure-rocky Install GAX-related wrappers via pip to work around #1972. --- appveyor.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index beecafaab769..3fb89ebfd473 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -83,15 +83,16 @@ install: # pip will build them from source using the MSVC compiler matching the # target Python version and architecture - "%CMD_IN_ENV% pip install wheel nose nose-exclude unittest2 cryptography grpcio" + # Install sometimes-problemaatic gRPC-related dependencies + - "%CMD_IN_ENV% pip install grpcio gax-google-pubsub-v1 gax-google-logging-v2" build_script: # Build the compiled extension - #- "%CMD_IN_ENV% python setup.py build" - - "%CMD_IN_ENV% python setup.py develop" - - "%CMD_IN_ENV% pip list" + - "%CMD_IN_ENV% python setup.py build" test_script: - "set PYTHONPATH=%GRPC_PATH%" + - "%CMD_IN_ENV% pip list" # Run the project tests - "%CMD_IN_ENV% python setup.py nosetests"