Skip to content

Commit

Permalink
feat(functions-py): update functions-py version
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Functions now raise exceptions on errors
  • Loading branch information
silentworks committed Oct 29, 2023
1 parent 8f9ce5c commit 10e9c47
Show file tree
Hide file tree
Showing 4 changed files with 360 additions and 338 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
install:
poetry install

install_poetry:
curl -sSL https://install.python-poetry.org | python -
poetry install

tests: install tests_only tests_pre_commit

tests_pre_commit:
poetry run pre-commit run --all-files

run_tests: tests

tests_only:
poetry run pytest --cov=./ --cov-report=xml --cov-report=html -vv
Loading

0 comments on commit 10e9c47

Please sign in to comment.