Skip to content

Commit 10e9c47

Browse files
committed
feat(functions-py): update functions-py version
BREAKING CHANGE: Functions now raise exceptions on errors
1 parent 8f9ce5c commit 10e9c47

File tree

4 files changed

+360
-338
lines changed

4 files changed

+360
-338
lines changed

Makefile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
install:
2+
poetry install
3+
4+
install_poetry:
5+
curl -sSL https://install.python-poetry.org | python -
6+
poetry install
7+
8+
tests: install tests_only tests_pre_commit
9+
10+
tests_pre_commit:
11+
poetry run pre-commit run --all-files
12+
13+
run_tests: tests
14+
15+
tests_only:
16+
poetry run pytest --cov=./ --cov-report=xml --cov-report=html -vv

0 commit comments

Comments
 (0)