-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
45 lines (36 loc) · 1.1 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.PHONY: format lint tests
all: format lint test
format:
poetry run autoflake .
poetry run black .
poetry run isort .
lint:
poetry run mypy .
poetry run black . --check
poetry run isort . --check
poetry run flake8 .
test: tests
tests:
poetry run pytest -v -k 'not network'
tests-ci:
poetry run pytest -v
clean:
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
clean-tests:
find tests/ -name "*.yaml" -type f | xargs rm -f
upgrade-langchain:
poetry add langchain@latest
git commit -a -m "Upgrade to latest langchain"
release:
test -z "$$(git status --porcelain)"
git checkout main
git pull
poetry version patch
git checkout -b "release/v$$(poetry version -s)"
git commit -am "Releasing version v$$(poetry version -s)"
git tag -a -m "Releasing version v$$(poetry version -s)" "v$$(poetry version -s)"
poetry publish --build --username $$PYPI_USERNAME --password $$PYPI_PASSWORD
# git push at the very end to get Github PR link
git push --set-upstream origin "release/v$$(poetry version -s)"
# --follow-tags seems to suppress Github message output
git push --follow-tags