Skip to content

Commit

Permalink
fix: updated tests dependencies due to issues with pytest-fixtures:
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethEnevoldsen committed Mar 19, 2024
1 parent dac8fc7 commit 477895c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
shell: bash
run: |
make install
pip install -r tests/requirements.txt
- name: Run tests
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ $ make install
```


## How to test the project
### How to test the project

Run the full test suite:

Expand Down
1 change: 1 addition & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
install:
@echo "--- 🚀 Installing project ---"
pip install -e ".[dev, docs, tests,tutorials,all,da]"
pip install -r tests/requirements.txt

static-type-check:
@echo "--- 🔍 Running static type check ---"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dev = [
"pyproject-parser[cli, readme]>=0.9.1",
]
tests = [
"pytest>=7.1.3",
"pytest>=7.1.3,<8.0.0", # due to https://github.com/TvoroG/pytest-lazy-fixture/issues/65
"pytest-cov>=3.0.0",
"pytest-lazy-fixture>=0.6.3",
"pytest-timeout>=2.1.0",
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import spacy
import augmenty

nlp = spacy.load("en_core_web_md")
# if not installed run: python -m spacy download en_core_web_md

docs = nlp.pipe(["Augmenty is a great tool for text augmentation"])

Expand Down

0 comments on commit 477895c

Please sign in to comment.