Skip to content

Commit b92c984

Browse files
author
Andrew Smith
authored
feat(functions-py): update functions-py version (#605)
2 parents 8f9ce5c + 10e9c47 commit b92c984

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)