Skip to content

Commit 8623aa1

Browse files
committed
Add appveyor script
1 parent 950eda5 commit 8623aa1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

appveyor.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
install:
3+
- echo Installed Pythons
4+
- dir c:\Python*
5+
6+
# install pypy using choco (redirect to a file and write to console in case
7+
# choco install returns non-zero, because choco install python.pypy is too
8+
# noisy)
9+
# pypy is disabled until #1963 gets fixed
10+
- choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
11+
- set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
12+
- echo PyPy installed
13+
- pypy --version
14+
15+
- C:\Python35\python -m pip install tox
16+
17+
build: false # Not a C# project, build stuff at the test step instead.
18+
19+
test_script:
20+
- C:\Python35\python -m tox
21+

0 commit comments

Comments
 (0)