Skip to content

Commit 7dae24c

Browse files
authored
Merge pull request #28 from nicoddemus/appveyor
Add appveyor script
2 parents 950eda5 + 03d24b3 commit 7dae24c

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

README.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
Plugin registration and hook calling for Python
33
===============================================
44

5+
.. image:: https://img.shields.io/pypi/v/pluggy.svg
6+
:target: https://pypi.python.org/pypi/pluggy
7+
.. image:: https://img.shields.io/pypi/pyversions/pluggy.svg
8+
:target: https://pypi.python.org/pypi/pluggy
9+
.. image:: https://img.shields.io/travis/pytest-dev/pluggy/master.svg
10+
:target: https://travis-ci.org/pytest-dev/pluggy
11+
.. image:: https://img.shields.io/appveyor/ci/pytestbot/pluggy/master.svg
12+
:target: https://ci.appveyor.com/project/pytestbot/pluggy
13+
514
This is the plugin manager as used by pytest but stripped
615
of pytest specific details.
716

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)