File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ environment :
2+
3+ matrix :
4+ # For Python versions available on Appveyor, see
5+ # http://www.appveyor.com/docs/installed-software#python
6+ # The list here is complete (excluding Python 2.6, which
7+ # isn't covered by this document) at the time of writing.
8+
9+ - PYTHON : " C:\\ Python27"
10+ - PYTHON : " C:\\ Python33"
11+ - PYTHON : " C:\\ Python34"
12+ - PYTHON : " C:\\ Python35"
13+ - PYTHON : " C:\\ Python36"
14+
15+ install :
16+ # We need wheel installed to build wheels
17+ - " git submodule update --init --recursive"
18+ - " %PYTHON%\\ python.exe -m pip install wheel"
19+ - " %PYTHON%\\ python.exe -m pip install -r requirements.txt"
20+ - " %PYTHON%\\ python.exe -m pip install -r requirements-dev.txt"
21+
22+ build : off
23+
24+ test_script :
25+ - " %python%\\ Scripts\\ nosetests -v --with-flaky --no-flaky-report tests"
26+
27+ after_test :
28+ # This step builds your wheels.
29+ - " %PYTHON%\\ python.exe setup.py bdist_wheel"
You can’t perform that action at this time.
0 commit comments