-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
48 lines (39 loc) · 1.34 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
# Build, package, test, and clean
PROJECT=deeplook
TESTDIR=tmp-test-dir-with-unique-name
PYTEST_ARGS=--doctest-modules -v --pyargs
PYTEST_COV_ARGS=--cov-config=../.coveragerc --cov-report=term-missing
help:
@echo "Commands:"
@echo ""
@echo " develop install in editable mode"
@echo " test run the test suite (including doctests)"
@echo " check run all code quality checks (pep8, linter)"
@echo " pep8 check for PEP8 style compliance"
@echo " lint run static analysis using pylint"
@echo " coverage calculate test coverage"
@echo " clean clean up build and generated files"
@echo ""
develop:
pip install --no-deps -e .
test:
# Run a tmp folder to make sure the tests are run on the installed version
mkdir -p $(TESTDIR)
cd $(TESTDIR); python -c "import $(PROJECT); $(PROJECT).test()"
rm -r $(TESTDIR)
coverage:
# Run a tmp folder to make sure the tests are run on the installed version
mkdir -p $(TESTDIR)
cd $(TESTDIR); pytest $(PYTEST_COV_ARGS) --cov=$(PROJECT) $(PYTEST_ARGS) $(PROJECT)
cp $(TESTDIR)/.coverage* .
rm -r $(TESTDIR)
pep8:
flake8 $(PROJECT) setup.py
lint:
pylint $(PROJECT) setup.py
check: pep8 lint
clean:
find . -name "*.pyc" -exec rm -v {} \;
rm -rvf build dist MANIFEST *.egg-info __pycache__ .coverage .cache
rm -rvf $(TESTDIR)
rm -rvf baseline