Skip to content

Commit

Permalink
Merge pull request #1965 from tseaver/1863-debug-missing-protobuf-on-…
Browse files Browse the repository at this point in the history
…appveyor

Attempt to un-break Appveyor:
  • Loading branch information
tseaver authored Jul 8, 2016
2 parents 9fbcdb7 + ff737ac commit 804ec9f
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,29 @@ environment:
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.4"
PYTHON_ARCH: "32"
# Use mocked-up GRPC for now
GRPC_PATH: "_testing"

- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.4"
PYTHON_ARCH: "64"
# Use mocked-up GRPC for now
GRPC_PATH: "_testing"

# Python 3.5.1 is the latest Python 3.5 with a Windows installer
# Python 3.5.1 is the overall latest
# https://www.python.org/ftp/python/3.5.1/
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.1"
PYTHON_ARCH: "32"
# Use mocked-up GRPC for now
GRPC_PATH: "_testing"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.1"
PYTHON_ARCH: "64"
# Use mocked-up GRPC for now
GRPC_PATH: "_testing"

install:
- ECHO "Filesystem root:"
Expand Down Expand Up @@ -78,10 +86,12 @@ install:

build_script:
# Build the compiled extension
- "%CMD_IN_ENV% python setup.py build"
#- "%CMD_IN_ENV% python setup.py build"
- "%CMD_IN_ENV% python setup.py develop"
- "%CMD_IN_ENV% pip list"

test_script:
- "set PYTHONPATH=_testing"
- "set PYTHONPATH=%GRPC_PATH%"
# Run the project tests
- "%CMD_IN_ENV% python setup.py nosetests"

Expand Down

0 comments on commit 804ec9f

Please sign in to comment.