summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-07-24 21:01:40 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-07-24 21:01:40 -0700
commit33ab7a829a43aa1ae4de07529e6c88b7d253a1d4 (patch)
tree0993024c82ad22d263fc834ba52be587334c96eb
parent2fae19478d87dfdcaed23ed63b7f64b2ab8c0dc7 (diff)
downloadpython-lxml-33ab7a829a43aa1ae4de07529e6c88b7d253a1d4.tar.gz
add .appveyor.yml
-rw-r--r--.appveyor.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 00000000..56c10873
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,17 @@
+environment:
+ matrix:
+ - python: 27
+ - python: 35
+# - python: 35-x64
+
+install:
+ - "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
+ - python -m pip install -U pip wheel setuptools
+ - pip install -r requirements.txt
+
+build: false
+
+test_script:
+ - python -u setup.py clean
+ - python -u setup.py bdist_wheel --static-deps
+ - ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }