Skip to content

Commit 5011407

Browse files
committed
Fix: install requests module
1 parent 21db7cf commit 5011407

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/project_euler.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v2
2828
- uses: actions/setup-python@v2
29-
- name: Install pytest
29+
- name: Install pytest and requests
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install --upgrade pytest
32+
python -m pip install --upgrade pytest requests
3333
- run: pytest scripts/validate_solutions.py
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)