diff options
| author | Stefan Behnel <stefan_ml@behnel.de> | 2019-02-06 21:19:17 +0100 |
|---|---|---|
| committer | Stefan Behnel <stefan_ml@behnel.de> | 2019-02-06 21:19:17 +0100 |
| commit | 10ee3839744ff41eca4737ee1fc44db4fc8470e9 (patch) | |
| tree | 20a020f535fdb35f9d2a47c0b0bd3a22724e4dbc | |
| parent | fc0a4d3cfe410dc3483ada551781203a95167964 (diff) | |
| download | python-lxml-10ee3839744ff41eca4737ee1fc44db4fc8470e9.tar.gz | |
First build, *then* run the tests in appveyor.
Also reorder the Python versions to get faster feedback on the most important ones.
| -rw-r--r-- | .appveyor.yml | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 8fb791ec..f1d26155 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,16 +2,16 @@ version: 1.0.{build} environment: matrix: + - python: 37 + - python: 37-x64 - python: 27 - python: 27-x64 - - python: 34 - - python: 34-x64 - - python: 35 - - python: 35-x64 - python: 36 - python: 36-x64 - - python: 37 - - python: 37-x64 + - python: 35 + - python: 35-x64 + - python: 34 + - python: 34-x64 install: - SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH% @@ -20,10 +20,11 @@ install: build: off build_script: - - python -u setup.py clean - - python -u setup.py bdist_wheel --static-deps + - 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: - - python -u test.py -vv -p - ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } |
