-
Notifications
You must be signed in to change notification settings - Fork 147
/
Makefile
54 lines (42 loc) · 1.28 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
46
47
48
49
50
51
52
53
54
setup:
pip install --upgrade pip
pip install '.[all]'
format:
black src/
docs-build:
mkdocs build
docs-serve:
mkdocs serve
docs-deploy:
mkdocs gh-deploy
dev:
pip install -e ".[dev]"
pre-commit install
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
clean-test:
rm -f .coverage
rm -f .coverage.*
rm -fr .pytest_cache
clean-build:
rm -fr build/
rm -fr dist/
clean: clean-pyc clean-test clean-build
test: clean
OPENAI_API_KEY=test_key ANTHROPIC_API_KEY=test_key REFUEL_API_KEY=test_key pytest
check: test
help:
@echo '----'
@echo 'format: autoformat local code changes'
@echo 'docs-build: build the documentation'
@echo 'docs-serve: preview docs locally'
@echo 'docs-deploy: deploy a new version of docs to Github Pages'
@echo 'dev: install autolabel from source with dev dependencies'
@echo 'clean-pyc: remove Python file artifacts'
@echo 'clean-test: remove test and coverage artifacts'
@echo 'clean-build: remove build artifacts'
@echo 'clean: remove all build, test and coverage artifacts'
@echo 'test: clean previous build and test artifacts, and run all tests'
@echo '----'