Skip to content

Commit

Permalink
Merge pull request #3 from trouchet/bp-deploy-pipeline
Browse files Browse the repository at this point in the history
Bp deploy pipeline
  • Loading branch information
brunolnetto authored Sep 29, 2023
2 parents abb5e08 + 4ea5b45 commit d9b7fd0
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 2 deletions.
77 changes: 77 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Coverage CI
on: [push, pull_request]

jobs:
poetry:
runs-on: ubuntu-20.04
defaults:
run:
shell: bash

strategy:
max-parallel: 42
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v3
- name: Set up python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

#----------------------------------------------
# install & configure poetry
#----------------------------------------------
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true

#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --verbose --no-interaction --no-root

#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install project
run: poetry install --verbose --no-interaction

#----------------------------------------------
# Test coverage
#----------------------------------------------
- name: Run tests and generate coverage
run: |
poetry run coverage run --rcfile=.coveragerc --omit='tests/*,setup/*' -m pytest
#----------------------------------------------
# Update codecov coverage
#----------------------------------------------
- name: Upload coverage reports to Codecov
run: |
# Replace `linux` below with the appropriate OS
# Options are `alpine`, `linux`, `macos`, `windows`
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN} -f .coverage
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ lint: ## Add a rule to clean up any temporary files


test: ## Add a rule to test the application
coverage run -m pytest
coverage run -m pytest --ignore=lambda_api/model_resolver.py

report: test ## Add a rule to generate coverage report
coverage report --show-missing
coverage report --show-missing --omit="lambda_api/model_resolver.py"
coverage html
$(BROWSER) htmlcov/index.html

Expand Down
Binary file added codecov
Binary file not shown.

0 comments on commit d9b7fd0

Please sign in to comment.