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 e0bec69 commit fc710eeCopy full SHA for fc710ee
.travis.yml
@@ -82,6 +82,12 @@ matrix:
82
packages:
83
- xvfb
84
before_script:
85
+ - |
86
+ if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]
87
+ then
88
+ echo "Don't run Python coverage on pull requests."
89
+ exit
90
+ fi
91
- ./configure
92
- make -j4
93
# Need a venv that can parse covered code.
@@ -109,6 +115,12 @@ matrix:
109
115
- lcov
110
116
111
117
118
119
120
121
+ echo "Don't run C coverage on pull requests."
122
123
112
124
113
125
script:
114
126
- xvfb-run make -j4 coverage-report
0 commit comments