We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fbbdf0 commit d7da836Copy full SHA for d7da836
.travis.yml
@@ -66,9 +66,13 @@ matrix:
66
language: c
67
compiler: gcc
68
env: OPTIONAL=true
69
+ addons:
70
+ apt:
71
+ packages:
72
+ - lcov
73
before_script:
74
- ./configure
- - make -s -j4
75
+ - make coverage -s -j4
76
# Need a venv that can parse covered code.
77
- ./python -m venv venv
78
- ./venv/bin/python -m pip install -U coverage
@@ -79,6 +83,7 @@ matrix:
79
83
after_script: # Probably should be after_success once test suite updated to run under coverage.py.
80
84
# Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
81
85
- source ./venv/bin/activate
86
+ - make coverage-lcov
82
87
- bash <(curl -s https://codecov.io/bash)
88
89
0 commit comments