Skip to content

Commit

Permalink
Work around iiasa/ixmp#477 in "pytest" CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Apr 17, 2023
1 parent c785636 commit 744a771
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ jobs:
- uses: ts-graphviz/setup-graphviz@v1

- name: Install the Python package and dependencies
run: pip install --upgrade --upgrade-strategy=eager .[docs,tests]
# TEMPORARY install ixmp from `main` branch pending iiasa/ixmp#477
run: |
pip install "ixmp @ git+https://github.com/iiasa/ixmp.git@main"
pip install --upgrade --upgrade-strategy=eager .[docs,tests]
- name: Run test suite using pytest
run: pytest genno --trace-config --color=yes --verbose --cov-report=xml --cov-report=term --numprocesses auto
Expand Down

0 comments on commit 744a771

Please sign in to comment.