Skip to content

Commit 5563c74

Browse files
authored
Merge pull request #79 from eecs485staff/codecov
Bump codecov GH Action version
2 parents ea5af36 + f3f6187 commit 5563c74

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ jobs:
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

madoop/mapreduce.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727

2828
def 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)

0 commit comments

Comments
 (0)