-
Notifications
You must be signed in to change notification settings - Fork 903
/
Makefile
70 lines (50 loc) · 1.69 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
install:
pip install .
clean:
rm -rf build dist docs/build kedro/html pip-wheel-metadata .mypy_cache .pytest_cache features/steps/test_plugin/test_plugin.egg-info kedro/datasets
find . -regex ".*/__pycache__" -exec rm -rf {} +
find . -regex ".*\.egg-info" -exec rm -rf {} +
pre-commit clean || true
install-pip-setuptools:
pip install -U "pip>=21.2" "setuptools>=65.5.1" wheel
lint:
pre-commit run -a --hook-stage manual $(hook)
test:
pytest --numprocesses 4 --dist loadfile
test-no-spark:
pytest --no-cov --ignore tests/extras/datasets/spark --numprocesses 4 --dist loadfile
test-no-datasets:
pytest --no-cov --ignore tests/extras/datasets/ --numprocesses 4 --dist loadfile
e2e-tests:
behave
pip-compile:
pip-compile -q -o -
secret-scan:
trufflehog --max_depth 1 --exclude_paths trufflehog-ignore.txt .
SPHINXPROJ = Kedro
build-docs:
pip install -e ".[docs]"
./docs/build-docs.sh "docs"
show-docs:
open docs/build/html/index.html
linkcheck:
pip install -e ".[docs]"
./docs/build-docs.sh "linkcheck"
package: clean install
python -m pip install build && python -m build
install-test-requirements:
pip install -r test_requirements.txt
install-pre-commit: install-test-requirements
pre-commit install --install-hooks
uninstall-pre-commit:
pre-commit uninstall
print-python-env:
@./tools/print_env.sh
databricks-build:
python -m pip install build && python -m build
python ./tools/databricks_build.py
sign-off:
echo "git interpret-trailers --if-exists doNothing \c" >> .git/hooks/commit-msg
echo '--trailer "Signed-off-by: $$(git config user.name) <$$(git config user.email)>" \c' >> .git/hooks/commit-msg
echo '--in-place "$$1"' >> .git/hooks/commit-msg
chmod +x .git/hooks/commit-msg