Skip to content

Commit

Permalink
fixing coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-zieba committed Feb 21, 2024
1 parent 341f446 commit abd16bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8"]

steps:
- name: Checkout
Expand Down Expand Up @@ -44,6 +44,11 @@ jobs:
# files: ./coverage.xml
# fail_ci_if_error: true
# verbose: true
- name: Upload coverage.xml as artifact
uses: actions/upload-artifact@v2
with:
name: coverage
path: coverage.xml

- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion src/pacman/s10_direct_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ def run10(eventlabel, workdir: Path, meta=None):
# Save results
print('Saving Metadata')
me.saveevent(meta, meta.workdir / f'WFC3_{meta.eventlabel}_Meta_Save', save=[])
print('tmp: ', 2+7)
print('tmp: ', 2+8)
print('Finished s10 \n')
return meta

0 comments on commit abd16bb

Please sign in to comment.