From 368e387e80d667ef88c27c422079857821d27444 Mon Sep 17 00:00:00 2001 From: maxirmx Date: Sun, 25 Oct 2015 21:06:22 +0300 Subject: [PATCH] Appveyor build cleanup --- .appveyor.yml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 5ded407d5..a9b87ec1c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -36,19 +36,7 @@ install: # Prepend newly installed Python to the PATH of this build (this cannot be # done from inside the powershell script as it would require to restart # the parent CMD process). - - "SET PATH=%CD%;%PYTHON%;%PYTHON%\\Scripts;%PATH%" - - "SET PYTHONPATH=%CD%;%PYTHONPATH%" - - # Filesystem root - #- ps: "ls \"C:/\"" - #- SET - - # Installed SDKs - #- ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\"" - - # Checking stdint.h - #- ps: "ls \"C:/projects/spacy/include/\"" - + - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" # Check that we have the expected version and architecture for Python - "python --version" @@ -71,15 +59,13 @@ build_script: - "%CMD_IN_ENV% python setup.py build_ext --inplace" - ps: appveyor\download.ps1 - "tar -xzf corpora/en/wordnet.tar.gz" - #- "ls \"C:/projects/spacy/corpora/en/" - #- "ls \"C:/projects/spacy/" - "%CMD_IN_ENV% python bin/init_model.py en lang_data/ corpora/ spacy/en/data" test_script: # Run the project tests - "pip install pytest" - - "%CMD_IN_ENV% py.test tests/ -x" + - "%CMD_IN_ENV% py.test spacy/ -x" after_test: # If tests are successful, create binary packages for the project.