forked from liuzuxin/FSRL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
64 lines (51 loc) · 2.05 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
SHELL=/bin/bash
PROJECT_NAME=fsrl
PROJECT_PATH=${PROJECT_NAME}/
PYTHON_FILES = $(shell find setup.py ${PROJECT_NAME} -type f -name "*.py")
ALL_PYTHON_FILES = $(shell find setup.py ${PROJECT_NAME} examples/ tests/ -type f -name "*.py")
check_install = python3 -c "import $(1)" || pip3 install $(1) --upgrade
check_install_extra = python3 -c "import $(1)" || pip3 install $(2) --upgrade
pytest:
$(call check_install, pytest)
$(call check_install, pytest_cov)
$(call check_install, pytest_xdist)
pytest -s tests --cov ${PROJECT_PATH} --durations 0 -v --cov-report term-missing --color=yes
mypy:
# $(call check_install, mypy)
# mypy ${PROJECT_NAME}
lint:
$(call check_install, flake8)
$(call check_install_extra, bugbear, flake8_bugbear)
flake8 ${PYTHON_FILES} --count --show-source --statistics
format:
$(call check_install, isort)
isort ${ALL_PYTHON_FILES}
$(call check_install, yapf)
yapf -ir ${ALL_PYTHON_FILES}
check-codestyle:
$(call check_install, isort)
$(call check_install, yapf)
isort --check ${PYTHON_FILES} && yapf -r -d ${PYTHON_FILES}
check-docstyle:
$(call check_install, pydocstyle)
$(call check_install, doc8)
$(call check_install, sphinx)
$(call check_install, sphinx_rtd_theme)
$(call check_install, sphinxcontrib.bibtex, sphinxcontrib_bibtex)
pydocstyle --match-dir="^(?!utils|config).*" ${PROJECT_PATH} && doc8 docs && cd docs && make html SPHINXOPTS="-W"
doc:
$(call check_install, sphinx)
$(call check_install, sphinx_rtd_theme)
$(call check_install, sphinxcontrib.bibtex, sphinxcontrib_bibtex)
cd docs && make html && cd _build/html && python3 -m http.server
spelling:
$(call check_install, sphinx)
$(call check_install, sphinx_rtd_theme)
$(call check_install_extra, sphinxcontrib.spelling, sphinxcontrib.spelling pyenchant)
$(call check_install, sphinxcontrib.bibtex, sphinxcontrib_bibtex)
cd docs && make spelling SPHINXOPTS="-W"
doc-clean:
cd docs && make clean
clean: doc-clean
commit-checks: lint check-codestyle mypy check-docstyle spelling
.PHONY: clean spelling doc mypy lint format check-codestyle check-docstyle commit-checks