-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add postgres * add openai key * readd coverage * desyncify and add detailed coverage
- Loading branch information
Showing
4 changed files
with
164 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Run Coverage | ||
on: [pull_request] | ||
jobs: | ||
test: | ||
permissions: | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.10" | ||
- name: Install poetry | ||
run: | | ||
pip install poetry | ||
- name: Start Database | ||
run: | | ||
cd api/local | ||
docker compose up --wait | ||
cd ../.. | ||
- name: Start Server | ||
run: | | ||
cd api | ||
poetry install --no-root | ||
poetry run uvicorn src.main:app & | ||
sleep 5 | ||
cd .. | ||
env: | ||
DATABASE_TYPE: postgres | ||
CONNECTION_URI: postgresql://testuser:testpwd@localhost:5432/honcho | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
- name: Run Tests | ||
run: | | ||
cd sdk | ||
poetry install | ||
poetry run coverage run -m pytest | ||
poetry run coverage report --format=markdown > coverage.md | ||
cd .. | ||
- name: Add Coverage PR Comment | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
recreate: true | ||
path: sdk/coverage.md | ||
- name: Stop Server | ||
run: | | ||
kill $(jobs -p) || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Run Tests | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
permissions: | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.10" | ||
- name: Install poetry | ||
run: | | ||
pip install poetry | ||
- name: Start Database | ||
run: | | ||
cd api/local | ||
docker compose up --wait | ||
cd ../.. | ||
- name: Start Server | ||
run: | | ||
cd api | ||
poetry install --no-root | ||
poetry run uvicorn src.main:app & | ||
sleep 5 | ||
cd .. | ||
env: | ||
DATABASE_TYPE: postgres | ||
CONNECTION_URI: postgresql://testuser:testpwd@localhost:5432/honcho | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
- name: Run Tests | ||
run: | | ||
cd sdk | ||
poetry install | ||
poetry run pytest | ||
cd .. | ||
- name: Stop Database | ||
run: | | ||
cd api/local | ||
docker compose down | ||
cd ../.. | ||
- name: Stop Server | ||
run: | | ||
kill $(jobs -p) || true |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters