Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rmusser01 authored Oct 3, 2024
1 parent 98c09f7 commit 06c2df2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test ChromaDB lib functions with pytest
run: |
pwd && cd ./Tests/ChromaDB && pytest ./Tests/ChromaDB/test_chromadb.py
pwd && cd ./Tests/ChromaDB && pytest test_chromadb.py
- name: Test RAG lib functions with pytest
run: |
pwd && cd ./Tests/RAG && pytest ./Tests/RAG/test_RAG_Library_2.py
pwd && cd ./Tests/RAG && pytest test_RAG_Library_2.py
- name: Test SQLite lib functions with pytest
run: |
pwd && cd ./Tests/SQLite_DB && pytest ./Tests/SQLite_DB/.
pwd && cd ./Tests/SQLite_DB && pytest .
- name: Test Utils lib functions with pytest
run: |
pwd && cd ./Tests/Utils && pytest ./Tests/Utils/test_utils.py
pwd && cd ./Tests/Utils && pytest test_utils.py

0 comments on commit 06c2df2

Please sign in to comment.