Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ jobs:
"ixmp[tests] @ git+https://github.com/iiasa/ixmp.git@main" \
.[tests]

- name: TEMPORARY workaround https://github.com/iiasa/message_ix/issues/975
run: uv pip install "ixmp4==0.11.1"

- name: Run test suite using pytest
env:
MESSAGE_IX_ZENODO_TOKEN: ${{ secrets.ZENODO_TOKEN }}
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Tests

on:
# Uncomment this entry only to debug the workflow
# pull_request:
# branches: [ main ]
pull_request_target:
pull_request:
branches: [ main ]
types: [ labeled, opened, reopened, synchronize ]
# pull_request_target:
# branches: [ main ]
# types: [ labeled, opened, reopened, synchronize ]
# 05:00 UTC = 06:00 CET = 07:00 CEST
schedule:
- cron: "0 5 * * *"
Expand Down Expand Up @@ -134,6 +134,9 @@ jobs:
- name: Install the package and dependencies
run: uv pip install --upgrade ${{ env.upstream-versions }} .[tests]

- name: TEMPORARY workaround https://github.com/iiasa/message_ix/issues/975
run: uv pip install "ixmp4==0.11.1"

- name: Run test suite using pytest
env:
# For test_cli.test_dl; see code in message_ix.cli.dl
Expand Down Expand Up @@ -214,6 +217,9 @@ jobs:
- name: Install the package and dependencies
run: uv pip install --upgrade ${{ env.upstream-versions }} .[tests]

- name: TEMPORARY workaround https://github.com/iiasa/message_ix/issues/975
run: uv pip install "ixmp4==0.11.1"

- name: Install R dependencies and tutorial requirements
run: |
install.packages(c("dplyr", "IRkernel", "reticulate"))
Expand Down
Loading