Skip to content

Commit

Permalink
pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
slava-vishnyakov committed Aug 6, 2024
1 parent 76c1c14 commit c0535c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
pip install -e .[dev]
- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
openai>=1.0.0
sqlite-vec>=0.1.0
bump2version>=1.0.1
python-dotenv>=0.19.0

# Development dependencies
bump2version>=1.0.1; extra == 'dev'
pytest>=6.2.5; extra == 'dev'
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
extras_require={
"dev": [
"bump2version>=1.0.1",
"pytest>=6.2.5",
],
},
)

0 comments on commit c0535c2

Please sign in to comment.