Skip to content

Commit c1dc46c

Browse files
Install pytest in Test Main workflow to enable testing (#37)
1 parent 41f4f3f commit c1dc46c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/test_main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ jobs:
3434
sleep 5; \
3535
done
3636
37-
- name: Upgrade pip
38-
run: python -m pip install --upgrade pip
37+
- name: Upgrade pip and install pytest
38+
run: |
39+
python -m pip install --upgrade pip
40+
pip install pytest
3941
4042
- name: Install project package in editable mode
4143
run: |
@@ -71,8 +73,10 @@ jobs:
7173
sleep 5; \
7274
done
7375
74-
- name: Upgrade pip
75-
run: python -m pip install --upgrade pip
76+
- name: Upgrade pip and install pytest
77+
run: |
78+
python -m pip install --upgrade pip
79+
pip install pytest
7680
7781
- name: Install project package in editable mode
7882
run: |

0 commit comments

Comments
 (0)