Skip to content

Commit 49aa05c

Browse files
committed
Fix CI: Add wordcloud and nltk to test dependencies
CI was failing with: ModuleNotFoundError: No module named 'wordcloud' Added wordcloud and nltk to pip install command in tests.yml to match requirements-dev.txt dependencies. This fixes visualization test imports that depend on word_clouds.py which requires the wordcloud library. Related to #33
1 parent e929cdc commit 49aa05c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
python -m pip install --upgrade pip
4040
pip install pytest pytest-cov
4141
pip install "numpy<2" scipy transformers matplotlib seaborn pandas tqdm
42-
pip install cleantext plotly scikit-learn
42+
pip install cleantext plotly scikit-learn wordcloud nltk
4343
pip install torch --index-url https://download.pytorch.org/whl/cpu
4444
pip install -e .
4545

0 commit comments

Comments
 (0)