File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 2
2
Plugin registration and hook calling for Python
3
3
===============================================
4
4
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
+
5
14
This is the plugin manager as used by pytest but stripped
6
15
of pytest specific details.
7
16
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments