forked from kedro-org/kedro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (32 loc) · 914 Bytes
/
Makefile
File metadata and controls
45 lines (32 loc) · 914 Bytes
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
install: build-docs
cp -r docs/build/html kedro
pip install .
clean:
rm -rf build dist docs/build kedro/html pip-wheel-metadata
find . -regex ".*/__pycache__" -exec rm -rf {} +
find . -regex ".*\.egg-info" -exec rm -rf {} +
install-pip-setuptools:
python -m pip install -U "pip>=18.0, <19.0" "setuptools>=38.0, <39.0" wheel
legal:
python tools/license_and_headers.py
lint:
pre-commit run -a --hook-stage push
test:
pytest tests
e2e-tests:
behave
SPHINXPROJ = Kedro
build-docs:
./docs/build-docs.sh
devserver: build-docs
cd docs && npm install && npm start
package: clean install
python setup.py sdist bdist_wheel
install-test-requirements:
pip install -r test_requirements.txt
install-pre-commit: install-test-requirements
pre-commit install --install-hooks
pre-commit install --hook-type pre-push
uninstall-pre-commit:
pre-commit uninstall
pre-commit uninstall --hook-type pre-push