Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Dependences
run: |
conda install --yes conda-build conda-verify coverage pytest hypothesis statsmodels aesara c-compiler
conda install --yes conda-build conda-verify pytest pytest-cov hypothesis statsmodels aesara c-compiler
- name: Build package
run: |
conda build --variants "{python: [${{ matrix.python-version }}]}" ./sunode/conda
Expand All @@ -38,4 +38,4 @@ jobs:
- name: Test with coverage
run: |
# conda activate doesn't seem to set paths to the conda prefix correctly
env LD_LIBRARY_PATH=${CONDA_PREFIX}/lib coverage run -m pytest --pyargs sunode
env LD_LIBRARY_PATH=${CONDA_PREFIX}/lib pytest --cov=sunode --cov-report xml --cov-report term-missing sunode