Skip to content

Commit

Permalink
updates coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
giumas committed Oct 28, 2024
1 parent 7db85d4 commit 466ec0d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
[run]
branch = True
source = hyo2.ssm2
omit =
hyo2/ssm2/app/*

[report]
omit = */app/*

# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ssm_on_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ jobs:
- name: Test with pytest
run: |
pip install coveralls PyYAML pytest pytest-cov
py.test --cov --cov-config=.coveragerc
py.test --cov-config=.coveragerc --cov
coverage report -m
coveralls
coveralls --rcfile=.coveragerc
1 change: 1 addition & 0 deletions hyo2/ssm2/lib/atlas/rtofs.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ def is_present(self) -> bool:
return self._has_data_loaded

def _clean_rtofs_folder(self, skip_folder: str | None = None) -> None:
# logger.debug("RTOFS folder to clean: %s" % self.data_folder)
for item in os.listdir(self.data_folder):
full_path = os.path.join(self.data_folder, item)

Expand Down

0 comments on commit 466ec0d

Please sign in to comment.