Fix for now
This commit is contained in:
parent
7a4a0f4705
commit
07836255ae
3 changed files with 8 additions and 2 deletions
3
.github/workflows/test_python_3_10.yml
vendored
3
.github/workflows/test_python_3_10.yml
vendored
|
|
@ -44,7 +44,8 @@ jobs:
|
|||
run: poetry install --no-interaction -E docs
|
||||
- name: Download NLTK tokenizer data
|
||||
run: |
|
||||
poetry run python -m nltk.downloader punkt
|
||||
poetry run python -m nltk.downloader punkt_tab averaged_perceptron_tagger_eng
|
||||
|
||||
|
||||
- name: Run unit tests
|
||||
run: poetry run pytest cognee/tests/unit/
|
||||
|
|
|
|||
5
.github/workflows/test_python_3_11.yml
vendored
5
.github/workflows/test_python_3_11.yml
vendored
|
|
@ -44,6 +44,11 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: poetry install --no-interaction -E docs
|
||||
|
||||
- name: Download NLTK tokenizer data
|
||||
run: |
|
||||
poetry run python -m nltk.downloader punkt_tab averaged_perceptron_tagger_eng
|
||||
|
||||
|
||||
- name: Run unit tests
|
||||
run: poetry run pytest cognee/tests/unit/
|
||||
|
||||
|
|
|
|||
2
.github/workflows/test_python_3_12.yml
vendored
2
.github/workflows/test_python_3_12.yml
vendored
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
run: poetry install --no-interaction -E docs
|
||||
- name: Download NLTK tokenizer data
|
||||
run: |
|
||||
poetry run python -m nltk.downloader punkt_tab
|
||||
poetry run python -m nltk.downloader punkt_tab averaged_perceptron_tagger_eng
|
||||
|
||||
- name: Run unit tests
|
||||
run: poetry run pytest cognee/tests/unit/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue