-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2287 from dweindl/release_0.21.2
- Loading branch information
Showing
63 changed files
with
648 additions
and
573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,11 +26,11 @@ jobs: | |
|
||
steps: | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 20 | ||
|
||
|
@@ -78,15 +78,14 @@ jobs: | |
- name: Run PEtab test suite | ||
run: | | ||
source ./build/venv/bin/activate \ | ||
&& AMICI_PARALLEL_COMPILE=2 pytest -v \ | ||
&& AMICI_PARALLEL_COMPILE="" pytest -v \ | ||
--cov-report=xml:coverage.xml \ | ||
--cov-append \ | ||
--cov=amici \ | ||
tests/petab_test_suite/ | ||
- name: Codecov | ||
if: github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev' | ||
uses: codecov/[email protected] | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: coverage.xml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,11 @@ jobs: | |
|
||
steps: | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: git fetch --prune --unshallow | ||
|
||
- run: echo "AMICI_DIR=$(pwd)" >> $GITHUB_ENV | ||
|
@@ -66,8 +66,7 @@ jobs: | |
${AMICI_DIR}/python/tests/test_splines.py | ||
- name: Codecov Python | ||
if: github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev' | ||
uses: codecov/[email protected] | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: build/coverage_py.xml | ||
|
@@ -86,8 +85,7 @@ jobs: | |
&& lcov -a coverage_cpp.info -a coverage_py.info -o coverage.info | ||
- name: Codecov CPP | ||
if: github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev' | ||
uses: codecov/[email protected] | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: coverage.info | ||
|
@@ -114,11 +112,11 @@ jobs: | |
|
||
steps: | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: git fetch --prune --unshallow | ||
|
||
- run: echo "AMICI_DIR=$(pwd)" >> $GITHUB_ENV | ||
|
@@ -141,8 +139,7 @@ jobs: | |
${AMICI_DIR}/python/tests/test_splines_short.py | ||
- name: Codecov Python | ||
if: github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev' | ||
uses: codecov/[email protected] | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: build/coverage_py.xml | ||
|
@@ -161,8 +158,7 @@ jobs: | |
&& lcov -a coverage_cpp.info -a coverage_py.info -o coverage.info | ||
- name: Codecov CPP | ||
if: github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev' | ||
uses: codecov/[email protected] | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: coverage.info | ||
|
@@ -190,11 +186,11 @@ jobs: | |
|
||
steps: | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: git fetch --prune --unshallow | ||
|
||
- run: echo "AMICI_DIR=$(pwd)" >> $GITHUB_ENV | ||
|
@@ -224,11 +220,11 @@ jobs: | |
|
||
steps: | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.9 | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: git fetch --prune --unshallow | ||
|
||
- name: Install dependencies | ||
|
@@ -266,11 +262,11 @@ jobs: | |
|
||
steps: | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.9 | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: git fetch --prune --unshallow | ||
|
||
- name: Install dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.