File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 5757 # Upload coverage report
5858 # https://github.com/codecov/codecov-action
5959 - name : Upload coverage report
60- uses : codecov/codecov-action@v1
60+ uses : codecov/codecov-action@v4
6161 with :
62+ token : ${{ secrets.CODECOV_TOKEN }}
63+ slug : eecs485staff/madoop
6264 fail_ci_if_error : true
Original file line number Diff line number Diff line change 2626
2727
2828def mapreduce (
29+ * ,
2930 input_path ,
3031 output_dir ,
3132 map_exe ,
@@ -287,7 +288,9 @@ def partition_keys_custom(
287288 Update the data structures provided by the caller input_keys_stats and
288289 output_keys_stats. Both map a filename to a set of of keys.
289290 """
290- # pylint: disable=too-many-arguments,too-many-locals
291+ # pylint: disable=too-many-arguments
292+ # pylint: disable=too-many-positional-arguments
293+ # pylint: disable=too-many-locals
291294 assert len (outpaths ) == num_reducers
292295 outparent = outpaths [0 ].parent
293296 assert all (i .parent == outparent for i in outpaths )
You can’t perform that action at this time.
0 commit comments