File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 87
87
fi
88
88
89
89
- name : Coverage from Python
90
- if : success () && matrix.make_target == 'fast-test'
90
+ if : always () && matrix.make_target == 'fast-test'
91
91
run : |
92
92
# Coverage from Python (cannot be combined with non-branch data).
93
93
if [[ -f .coverage_covimerage ]]; then
@@ -96,22 +96,21 @@ jobs:
96
96
fi
97
97
98
98
- name : Codecov for Python
99
- if : success() && matrix.make_target == 'fast-test'
99
+ if : matrix.make_target == 'fast-test'
100
100
uses : codecov/codecov-action@v2
101
101
with :
102
102
files : coverage.xml
103
103
flags : python
104
104
105
105
- name : Coverage from Vim
106
- if : success ()
106
+ if : always ()
107
107
run : |
108
108
# Coverage from Vim.
109
109
covimerage write_coverage $TEST_PROFILE
110
110
coverage report -m
111
111
coverage xml
112
112
113
113
- name : Codecov for Vim
114
- if : success()
115
114
uses : codecov/codecov-action@v2
116
115
with :
117
116
files : coverage.xml
You can’t perform that action at this time.
0 commit comments