forked from sktime/skpro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
71 lines (57 loc) · 1.79 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
71
# Makefile for easier installation and cleanup.
#
# Uses self-documenting macros from here:
# http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
PACKAGE=skpro
DOC_DIR=./docs
BUILD_TOOLS=./build_tools
TEST_DIR=testdir
.PHONY: help release install test lint clean dist doc docs
.DEFAULT_GOAL := help
help:
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) |\
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m\
%s\n", $$1, $$2}'
test: ## Run unit tests
-rm -rf ${TEST_DIR}
mkdir -p ${TEST_DIR}
cp .coveragerc ${TEST_DIR}
cp setup.cfg ${TEST_DIR}
python -m pytest
test_check_suite: ## run only estimator contract tests in TestAll classes
-rm -rf ${TEST_DIR}
mkdir -p ${TEST_DIR}
cp .coveragerc ${TEST_DIR}
cp setup.cfg ${TEST_DIR}
python -m pytest -k 'TestAll' $(PYTESTOPTIONS)
test_softdeps_full: ## Run all non-suite unit tests without soft dependencies
-rm -rf ${TEST_DIR}
mkdir -p ${TEST_DIR}
cp setup.cfg ${TEST_DIR}
cd ${TEST_DIR}
python -m pytest -v --showlocals --durations=20 -k 'not TestAll' $(PYTESTOPTIONS)
tests: test
clean: ## Clean build dist and egg directories left after install
rm -rf ./dist
rm -rf ./build
rm -rf ./pytest_cache
rm -rf ./htmlcov
rm -rf ./junit
rm -rf ./$(PACKAGE).egg-info
rm -rf coverage.xml
rm -f MANIFEST
rm -rf ./wheelhouse/*
find . -type f -iname "*.so" -delete
find . -type f -iname '*.pyc' -delete
find . -type d -name '__pycache__' -empty -delete
dist: ## Make Python source distribution
python3 setup.py sdist bdist_wheel
build:
python -m build --sdist --wheel --outdir wheelhouse
docs: doc
doc: ## Build documentation with Sphinx
$(MAKE) -C $(DOC_DIR) html
nb: clean
rm -rf .venv || true
python3 -m venv .venv
. .venv/bin/activate && python -m pip install .[all_extras,binder] && ./build_tools/run_examples.sh