Skip to content

Commit c37992c

Browse files
committed
fix tests
1 parent 3cbf7cb commit c37992c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
- name: Install deps
3737
run: pip install cython numpy==1.26
3838

39-
# - name: Installing packages again (this prevents a weird error)
40-
# run: pip install -r requirements.txt
41-
4239
- name: Installing package
4340
run: pip install -e .
4441

42+
- name: Installing packages again (this prevents a weird error in cell matching nb)
43+
run: pip install -r requirements.txt
44+
4545
- name: Installing build dependencies
4646
run: |
4747
pip install markupsafe==2.0.1

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
- name: Install cython
2828
run: pip install cython numpy==1.26
2929

30-
- name: Installing package
31-
run: pip install -e .
30+
- name: Installing requirements
31+
run: pip install -r ./requirements.txt
3232

33-
# - name: Installing requirements
34-
# run: pip install -r ./requirements.txt
33+
- name: Installing packages again (this prevents a weird error in cell matching nb)
34+
run: pip install -r requirements.txt
3535

3636
- name: Installing build dependencies
3737
run: |

0 commit comments

Comments
 (0)