Skip to content

Commit feda455

Browse files
committed
Codecov in specific version
1 parent a7cd620 commit feda455

File tree

2 files changed

+24
-21
lines changed

2 files changed

+24
-21
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,9 @@ matrix:
4848
- env: TOX_ENV=py35-djdev
4949
- env: TOX_ENV=py36-djdev
5050
install:
51-
- pip install tox codecov
51+
- pip install tox
5252
script:
5353
- tox -e "$TOX_ENV"
54-
after_success:
55-
- codecov
5654
deploy:
5755
provider: pypi
5856
user: uncovertruth

tox.ini

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,33 @@
11
[tox]
22
envlist =
3-
py{27,33,34,35,36}-dj{18,19,110,111,dev}
4-
flake8,
5-
isort,
6-
readme
7-
check-manifest
3+
py{27,33,34,35,36}-dj{18,19,110,111,dev}
4+
flake8,
5+
isort,
6+
readme
7+
check-manifest
88

99
[testenv]
1010
basepython =
11-
py27: python2.7
12-
py33: python3.3
13-
py34: python3.4
14-
py35: python3.5
15-
py36: python3.6
11+
py27: python2.7
12+
py33: python3.3
13+
py34: python3.4
14+
py35: python3.5
15+
py36: python3.6
1616
deps =
17-
dj18: Django>=1.8,<1.9
18-
dj19: Django>=1.9,<1.10
19-
dj110: Django>=1.10,<1.11
20-
dj111: Django>=1.11,<2.0
21-
djdev: https://github.com/django/django/archive/master.tar.gz
22-
-r{toxinidir}/requirements.txt
17+
dj18: Django>=1.8,<1.9
18+
dj19: Django>=1.9,<1.10
19+
dj110: Django>=1.10,<1.11
20+
dj111: Django>=1.11,<2.0
21+
djdev: https://github.com/django/django/archive/master.tar.gz
22+
-r{toxinidir}/requirements.txt
23+
py36-dj111: codecov
2324
setenv =
24-
PYTHONPATH = {toxinidir}
25-
commands = coverage run --source=django_elastipymemcache -m nose
25+
PYTHONPATH = {toxinidir}
26+
commands =
27+
coverage run --source=django_elastipymemcache -m nose
28+
py36-dj111: coverage report
29+
py36-dj111: coverage xml
30+
py36-dj111: codecov
2631

2732
[testenv:flake8]
2833
basepython = python3.6

0 commit comments

Comments
 (0)