From 3c2e6e0556c320325f03703eb84c01f3b084d814 Mon Sep 17 00:00:00 2001 From: derAnfaenger Date: Tue, 5 Sep 2017 15:25:42 +0200 Subject: [PATCH] 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. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9c174c9..ea30c84 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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