Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
matrix:
python-version: [3.8]
#platform: [ubuntu-18.04, macos-latest]
platform: [ubuntu-20.04]
platform: [ubuntu-24.04]
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get LFS files
run: git lfs pull
# - name: Fix Conda permissions on macOS
Expand All @@ -28,8 +28,8 @@ jobs:
run: |
cd ..
git clone https://github.com/next-exp/IC.git


- name: Run tests
run: |
cd ..
Expand All @@ -38,4 +38,4 @@ jobs:
source manage.sh work_in_python_version_no_tests ${{ matrix.python-version }}
cd ../ICAROS
source icaro_setup.sh
PYTEST_ADDOPTS=--color=yes HYPOTHESIS_PROFILE=travis-ci pytest -v
PYTEST_ADDOPTS=--color=yes HYPOTHESIS_PROFILE=travis-ci pytest -v
2 changes: 1 addition & 1 deletion krcal/core/fit_lt_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def fit_lifetime_unbined(z : np.array,
logging.warn(f'Type error found in fit_lifetime_unbined: not enough events for fit')
valid = False

except LinAlgError:
except SystemError:
logging.warn(f'LinAlgError error found in fit_lifetime_unbined: not enough events for fit')
valid = False

Expand Down