Skip to content

Commit 57208ca

Browse files
committed
updates tox/travis config
1 parent c4f5a04 commit 57208ca

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ python:
1111

1212
install:
1313
- pip install .
14-
- pip install tox pytest>=2.8.2
15-
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install 'django<1.5'; fi
16-
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then travis_retry pip install 'django>=1.6'; fi
14+
- pip install tox
1715
- "TOX_ENV=${TRAVIS_PYTHON_VERSION/[0-9].[0-9]/py${TRAVIS_PYTHON_VERSION/.}}"
1816

1917

README.rst

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
pytest-echo
22
===========
33

4-
(https://pypip.in/v/pytest-echo/badge.png)[`target: https://crate.io/packages/pytest-echo/`]
4+
.. image:: https://badge.fury.io/py/pytest-echo.svg
5+
:target: http://badge.fury.io/py/pytest-echo
6+
:alt: PyPI package
57

6-
.. image:: https://pypip.in/d/pytest-echo/badge.png
7-
:target: https://crate.io/packages/pytest-echo/
8+
.. image:: https://travis-ci.org/saxix/pytest-echo.svg?branch=master
9+
:target: https://travis-ci.org/saxix/pytest-echo
10+
:alt: Travis CI build status (Linux)
11+
12+
.. image:: https://codecov.io/github/saxix/pytest-echo/coverage.svg?branch=master
13+
:target: https://codecov.io/github/saxix/pytest-echo?branch=master
14+
:alt: Code Coverage
15+
16+
17+
.. image:: https://readthedocs.org/projects/pytest-echo/badge/?version=latest
18+
:target: https://readthedocs.org/projects/pytest-echo/?badge=latest
19+
:alt: Documentation Status
820

921

1022
Print environment variables, package version and generic attributes,
@@ -127,6 +139,8 @@ Links
127139
+--------------------+-------------------------------------------------+
128140
| Issue tracker: |https://github.com/saxix/pytest-echo/issues?sort |
129141
+--------------------+-------------------------------------------------+
142+
| CI: |https://travis-ci.org/saxix/pytest-echo |
143+
+--------------------+-------------------------------------------------+
130144
| Download: |http://pypi.python.org/pypi/pytest-echo/ |
131145
+--------------------+-------------------------------------------------+
132146
| Documentation: |https://pytest-echo.readthedocs.org/en/latest/ |

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ envlist=py27,py33,py34,py35,py36,pypy
33

44
[testenv]
55
deps =
6-
; py27: pytest>=3.3.2
6+
py{27,33}: django<2
7+
py{34,35,36}: django
78
py{33,34}: pytest<3
89
py{33,34}: py<1.5
910

0 commit comments

Comments
 (0)