Skip to content

Commit 5cc99f9

Browse files
committed
require requests on github runner
1 parent 5024439 commit 5cc99f9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
pip install pytest pytest-xdist # Testing packages
3030
python setup.py install_egg_info # Workaround https://github.com/pypa/pip/issues/4537
3131
pip install -e . # Run pytest
32+
- name: Import language_tool_python
33+
run: |
34+
echo "import language_tool_python\n" | python
3235
- name: Test with pytest
3336
run: |
3437
pytest -vx --dist=loadfile -n auto

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
tqdm
1+
requests
2+
tqdm

0 commit comments

Comments
 (0)