Skip to content

Commit

Permalink
fix GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
samos123 committed Oct 27, 2023
1 parent 7ebc2b6 commit d6da740
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ jobs:
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Upgrade pip
run: pip3 install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
run: pip3 install -r requirements.txt
- name: Install test dependencies
run: pip install -r test-requirements.txt
run: pip3 install -r test-requirements.txt
- name: Integration tests
run: pytest
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
fastapi
sentence-transformers
sentence-transformers==2.2.2
uvicorn[standard]

0 comments on commit d6da740

Please sign in to comment.