Skip to content

Commit 3c1970d

Browse files
committed
Merge branch 'patch-3' of github.com:jezeniel/django-webpack-loader into jezeniel-patch-3
2 parents c124cc6 + 5c6ae55 commit 3c1970d

File tree

3 files changed

+12
-31
lines changed

3 files changed

+12
-31
lines changed

.travis.yml

Lines changed: 9 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,20 @@
11
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
- "3.3"
6+
- "3.4"
7+
- "3.5"
8+
- "3.6"
29
sudo: false
310
# command to install dependencies
411
before_install: "cd tests"
5-
install: travis_retry pip install 'tox<3.0' coveralls
12+
install: travis_retry pip install 'tox<3.0' coveralls tox-travis
613
# command to run tests
714
script:
815
- npm install
9-
- tox -e "${TOXENV}"
16+
- tox
1017
after_success:
1118
- coverage xml
1219
- cp coverage.xml ../
1320
- coveralls
14-
env:
15-
matrix:
16-
- TOXENV=py26-django16
17-
- TOXENV=py27-django16
18-
- TOXENV=py27-django17
19-
- TOXENV=py33-django17
20-
- TOXENV=py34-django17
21-
- TOXENV=py27-django18
22-
- TOXENV=py33-django18
23-
- TOXENV=py34-django18
24-
- TOXENV=py27-django19
25-
- TOXENV=py34-django19
26-
- TOXENV=py27-django110
27-
- TOXENV=py34-django110
28-
- TOXENV=py27-django111
29-
- TOXENV=py34-django111
30-
# Python 3.5 has to go here until Travis adds it to the default build images.
31-
# https://github.com/travis-ci/travis-ci/issues/4794#issuecomment-143758799
32-
matrix:
33-
include:
34-
- python: 3.5
35-
env: TOXENV=py35-django18
36-
- python: 3.5
37-
env: TOXENV=py35-django19
38-
- python: 3.5
39-
env: TOXENV=py35-django110
40-
- python: 3.5
41-
env: TOXENV=py35-django111

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# django-webpack-loader
22

33
[![Join the chat at https://gitter.im/owais/django-webpack-loader](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/owais/django-webpack-loader?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4-
[![Build Status](https://travis-ci.org/owais/django-webpack-loader.svg?branch=master)](https://travis-ci.org/owais/django-webpack-loader)
4+
[![Build Status](https://travis-ci.org/ezhome/django-webpack-loader.svg?branch=master)](https://travis-ci.org/ezhome/django-webpack-loader)
55
[![Coverage Status](https://coveralls.io/repos/owais/django-webpack-loader/badge.svg?branch=master&service=github)](https://coveralls.io/github/owais/django-webpack-loader?branch=master)
66

77
<br>

tests/tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ envlist =
77
py33-django{17,18}
88
py34-django{17,18,19,110,111}
99
py35-django{18,19,110,111}
10+
py36-django{18,19,110,111}
1011

1112
[testenv]
1213
basepython =
@@ -15,6 +16,7 @@ basepython =
1516
py33: python3.3
1617
py34: python3.4
1718
py35: python3.5
19+
py36: python3.6
1820
deps =
1921
coverage
2022
unittest2six

0 commit comments

Comments
 (0)