aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmmar Askar <ammar@ammaraskar.com>2020-02-27 18:08:30 -0500
committerGitHub <noreply@github.com>2020-02-27 15:08:30 -0800
commit766b7546a564c8e386a3c31eb06fc1b55e8f5a25 (patch)
tree00391dd04bbc08df63afae3e03e2aecb301ff7ad /.travis.yml
parentbpo-39609: set the thread_name_prefix for the default asyncio executor (GH-18... (diff)
downloadcpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.tar.gz
cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.tar.bz2
cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.zip
bpo-39704: Explicitly pass the path to codecov config (GH-18680)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index b1d50d49ca5..675e267fe2e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -94,7 +94,7 @@ matrix:
after_script: # Probably should be after_success once test suite updated to run under coverage.py.
# Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
- source ./venv/bin/activate
- - bash <(curl -s https://codecov.io/bash)
+ - bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
- name: "Test code coverage (C)"
os: linux
language: c
@@ -111,7 +111,7 @@ matrix:
- xvfb-run make -j4 coverage-report
after_script: # Probably should be after_success once test suite updated to run under coverage.py.
- make pythoninfo
- - bash <(curl -s https://codecov.io/bash)
+ - bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
before_install: