travis: Install codecodv in the correct place.
Before this commit, codecov got installed for each test job, but was only needed *after* all jobs had passed: in after_success. This lead to codecov silently failing, as it was not installed when it was actually needed.
This commit is contained in:
parent
610f02969a
commit
3c2e6e0556
|
@ -10,10 +10,10 @@ matrix:
|
|||
- python: "3.6"
|
||||
env: TEST_SUITE=lint
|
||||
install:
|
||||
- pip install codecov
|
||||
- tools/provision
|
||||
- source zulip-api-py*-venv/bin/activate
|
||||
script:
|
||||
- tools/$TEST_SUITE
|
||||
after_success:
|
||||
- pip install codecov
|
||||
- codecov
|
||||
|
|
Loading…
Reference in a new issue