diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2020-02-27 23:08:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-27 23:08:30 (GMT) |
commit | 766b7546a564c8e386a3c31eb06fc1b55e8f5a25 (patch) | |
tree | 00391dd04bbc08df63afae3e03e2aecb301ff7ad /.travis.yml | |
parent | 374d998b507d34a6c0a3816a163926a8ba0c483f (diff) | |
download | cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.zip cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.tar.gz cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.tar.bz2 |
bpo-39704: Explicitly pass the path to codecov config (GH-18680)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index b1d50d4..675e267 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: |