summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-02-06 21:22:17 +0100
committerStefan Behnel <stefan_ml@behnel.de>2019-02-06 21:22:17 +0100
commit9a6db11a42f3239f3f2c1c4386f3fbe7eb924d9d (patch)
tree6672a048001ec3e1fe30e084547b8e4f81412ab6 /appveyor.yml
parent10ee3839744ff41eca4737ee1fc44db4fc8470e9 (diff)
downloadpython-lxml-9a6db11a42f3239f3f2c1c4386f3fbe7eb924d9d.tar.gz
Rename appveyor script to more common name without leading dot.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 00000000..f1d26155
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,30 @@
+version: 1.0.{build}
+
+environment:
+ matrix:
+ - python: 37
+ - python: 37-x64
+ - python: 27
+ - python: 27-x64
+ - python: 36
+ - python: 36-x64
+ - python: 35
+ - python: 35-x64
+ - python: 34
+ - python: 34-x64
+
+install:
+ - SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%
+ - python -m pip.__main__ install -U pip wheel setuptools
+ - pip install -r requirements.txt --install-option="--no-cython-compile"
+
+build: off
+build_script:
+ - python -u setup.py clean
+ - python -u setup.py build_ext --inplace --static-deps
+ - python -u test.py -vv -p
+ - python -u setup.py bdist_wheel --static-deps
+
+test: off
+test_script:
+ - ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }