-
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.
- Loading branch information
Showing
6 changed files
with
169 additions
and
27 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,51 @@ | ||
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: Syncify Client | ||
run: | | ||
python scripts/syncronizer.py | ||
- name: Start Server | ||
run: | | ||
cd api | ||
poetry install --no-root | ||
poetry run uvicorn src.main:app & | ||
sleep 5 | ||
cd .. | ||
env: | ||
DATABASE_TYPE: sqlite | ||
CONNECTION_URI: sqlite:///api.db | ||
- name: Run Tests | ||
run: | | ||
cd sdk | ||
poetry install | ||
poetry run coverage run -m pytest | ||
poetry run coverage xml -o coverage.xml | ||
cd .. | ||
- name: Code Coverage | ||
uses: irongut/[email protected] | ||
with: | ||
filename: sdk/coverage.xml | ||
badge: true | ||
output: file | ||
format: markdown | ||
- name: Add Coverage PR Comment | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
recreate: true | ||
path: code-coverage-results.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,38 @@ | ||
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: Syncify Client | ||
run: | | ||
python scripts/syncronizer.py | ||
- name: Start Server | ||
run: | | ||
cd api | ||
poetry install --no-root | ||
poetry run uvicorn src.main:app & | ||
sleep 5 | ||
cd .. | ||
env: | ||
DATABASE_TYPE: sqlite | ||
CONNECTION_URI: sqlite:///api.db | ||
- name: Run Tests | ||
run: | | ||
cd sdk | ||
poetry install | ||
poetry run pytest | ||
cd .. | ||
- 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
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
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