Skip to content

Commit eee0f78

Browse files
Eldinnietsnoam
authored andcommitted
Add appveyor.yml (python-telegram-bot#660)
[ci skip]
1 parent d558319 commit eee0f78

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

appveyor.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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"

0 commit comments

Comments
 (0)