Skip to content

Commit bc4f59c

Browse files
committed
Do not install dev deps in GitHub actions pytest
1 parent 298706c commit bc4f59c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pytest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ jobs:
2727
- name: Install python dependencies
2828
run: |
2929
curl -sSL https://install.python-poetry.org | python3 -
30-
poetry export --without-hashes --dev --output requirements.txt
30+
poetry export --without-hashes --output requirements.txt
3131
python -m pip install --upgrade pip
3232
pip install wheel
3333
pip install -r requirements.txt
3434
python -m textblob.download_corpora
3535
python -m spacy download en_core_web_sm
36+
pip install pytest
3637
- name: Test with pytest
3738
run: |
3839
pytest

0 commit comments

Comments
 (0)