Skip to content

Commit

Permalink
Update codecov CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Dec 9, 2024
1 parent 5b82fc5 commit 1b3dd2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ jobs:
name: codecov-umbrella
flags: unittests
env_vars: OS,PYTHON
file: ./coverage.xml
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}

- name: Success Reporting
if: success()
Expand Down
2 changes: 1 addition & 1 deletion gstore/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def sync(org: Organization, repos: List[Repository], base_path: str, **kwargs):
# Calculate the number of processes to use
jobs = min(len(repos), requested_jobs)
if jobs == 0:
logger.warning("No repositories to sync.")
logger.warning("No repositories to sync")
return

Check warning on line 174 in gstore/repo.py

View check run for this annotation

Codecov / codecov/patch

gstore/repo.py#L173-L174

Added lines #L173 - L174 were not covered by tests

org_path = os.path.join(base_path, org.login)
Expand Down

0 comments on commit 1b3dd2b

Please sign in to comment.