Skip to content

Commit 7cd01ee

Browse files
Update tox.ini, .travis.yml to support Django 1.11
1 parent baa10e5 commit 7cd01ee

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ python:
55
2.7
66

77
install:
8-
pip install tox codecov
8+
pip install tox
99

1010
script:
1111
tox
12-
13-
after_success:
14-
bash <(curl -s https://codecov.io/bash)

README.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
.. image:: https://badge.fury.io/py/django-package-monitor.svg
55
:target: https://badge.fury.io/py/django-package-monitor
66

7-
.. image:: https://codecov.io/gh/yunojuno/django-package-monitor/branch/master/graph/badge.svg
8-
:target: https://codecov.io/gh/yunojuno/django-package-monitor
9-
107

118
Django Package Monitor
129
======================

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[tox]
2-
envlist = django{18,19,110}_py27
2+
envlist = py27-django{18,19,110,111}
33

44
[testenv]
5-
basepython = python2.7
65
deps =
76
coverage==4.2
87
mock==2.0
9-
django18_py27: Django>1.7,<1.9
10-
django19_py27: Django>1.9,<1.10
11-
django110_py27: Django>1.9,<1.11
8+
django18: Django==1.8
9+
django19: Django==1.9
10+
django110: Django==1.10
11+
django111: Django==1.11
1212

1313
commands=
14+
python --version
1415
coverage erase
1516
coverage run --include=package_monitor/* manage.py test package_monitor
1617
coverage report -m

0 commit comments

Comments
 (0)