Skip to content

Commit

Permalink
Merge pull request #79 from eecs485staff/codecov
Browse files Browse the repository at this point in the history
Bump codecov GH Action version
  • Loading branch information
awdeorio authored Nov 6, 2024
2 parents ea5af36 + f3f6187 commit 5563c74
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ jobs:
# Upload coverage report
# https://github.com/codecov/codecov-action
- name: Upload coverage report
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: eecs485staff/madoop
fail_ci_if_error: true
5 changes: 4 additions & 1 deletion madoop/mapreduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@


def mapreduce(
*,
input_path,
output_dir,
map_exe,
Expand Down Expand Up @@ -287,7 +288,9 @@ def partition_keys_custom(
Update the data structures provided by the caller input_keys_stats and
output_keys_stats. Both map a filename to a set of of keys.
"""
# pylint: disable=too-many-arguments,too-many-locals
# pylint: disable=too-many-arguments
# pylint: disable=too-many-positional-arguments
# pylint: disable=too-many-locals
assert len(outpaths) == num_reducers
outparent = outpaths[0].parent
assert all(i.parent == outparent for i in outpaths)
Expand Down

0 comments on commit 5563c74

Please sign in to comment.