Skip to content

Commit 5c6a51c

Browse files
committed
Fix CI workflow failures
- Add ipython to test-derivations dependencies (required by src/display.py) - Ignore E741/E743 in ruff check (I is standard notation for initial condition)
1 parent 1612506 commit 5c6a51c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install pytest pytest-cov numpy sympy matplotlib
27+
pip install pytest pytest-cov numpy sympy matplotlib ipython
2828
2929
- name: Run tests with coverage
3030
run: |
@@ -94,7 +94,7 @@ jobs:
9494
9595
- name: Run ruff check
9696
run: |
97-
ruff check src/ tests/ --select=E,W,F --ignore=F403,F405,E501
97+
ruff check src/ tests/ --select=E,W,F --ignore=F403,F405,E501,E741,E743
9898
9999
- name: Check import ordering
100100
run: |

0 commit comments

Comments
 (0)