Skip to content

Commit 85e409c

Browse files
committed
Switching from coveralls to codecov.
For future multi-ci (Windows) support.
1 parent 579ddfc commit 85e409c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ python:
2323
sudo: false
2424

2525
# Run.
26-
install: pip install coveralls tox
26+
install: pip install tox
2727
before_script:
2828
- git config --global user.email "[email protected]"
2929
- git config --global user.name "Travis CI"
3030
script: tox -e ${TOX_ENV:-py${TRAVIS_PYTHON_VERSION//.}}
3131
after_success:
32-
- coveralls
32+
- bash <(curl -s https://codecov.io/bash)
3333

3434
# Deploy.
3535
deploy:

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ envlist = lint,py{34,27}
1010

1111
[testenv]
1212
commands =
13-
py.test --cov-report term-missing --cov-report xml --cov {[general]name} --cov-config tox.ini \
14-
{posargs:tests}
13+
py.test --cov-report term-missing --cov-report xml --cov {[general]name} --cov-config tox.ini {posargs:tests}
1514
deps =
1615
{[general]install_requires}
1716
pytest-catchlog==1.2.2

0 commit comments

Comments
 (0)