summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2017-02-11 07:56:47 +0100
committerStefan Behnel <stefan_ml@behnel.de>2017-02-11 07:56:47 +0100
commitf9a14a3e37dac414503d682d69d9cb51f69192b2 (patch)
tree2df0e9d78345d73ee6d9f96e8ffcb7ce41fb3fa9
parented3db2967e95f7aa9d6b086a7e5b9417c02a4418 (diff)
downloadpython-lxml-f9a14a3e37dac414503d682d69d9cb51f69192b2.tar.gz
clean up appveyor build script some more
-rw-r--r--.appveyor.yml17
1 files changed, 7 insertions, 10 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 14db6875..cc64b9f2 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -9,18 +9,15 @@ environment:
- python: 36-x64
install:
- - cmd: >-
- SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%
-
- python -m pip install -U pip wheel setuptools
-
- pip install -r requirements.txt --install-option="--no-cython-compile"
+ - SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%
+ - python -m pip install -U pip wheel setuptools
+ - pip install -r requirements.txt --install-option="--no-cython-compile"
+build: off
build_script:
- - cmd: >-
- python -u setup.py clean
-
- python -u setup.py bdist_wheel --static-deps
+ - python -u setup.py clean
+ - python -u setup.py bdist_wheel --static-deps
+test: off
test_script:
- ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }