-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
47 lines (34 loc) · 1.13 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
help:
@echo "clean - remove all build, test, coverage and Python artifacts"
@echo "clean-pyc - remove Python file artifacts"
@echo "clean-test - remove test and coverage artifacts"
@echo "lint - check style"
@echo "test - run tests quickly with the default Python"
@echo "coverage - check code coverage quickly with the default Python"
@echo "build - package"
all: default
default: clean dev_deps test build
.venv:
if [ ! -e ".venv/bin/activate_this.py" ] ; then python -m venv .venv ; fi
clean: clean-build clean-pyc clean-test
clean-build:
rm -fr dist/
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
clean-test:
rm -fr .tox/
rm -f .coverage
rm -fr htmlcov/
deps: .venv
. .venv/bin/activate && pip install -U -r requirements_prod.txt -t ./src/libs
dev_deps: .venv
. .venv/bin/activate && pip install -U -r requirements.txt
lint:
. .venv/bin/activate && pylint -r n src/main.py tests/main_test.py
test:
. .venv/bin/activate && PYTHONPATH=./src/toggle nosetests --config=.noserc
build: clean
mkdir ./dist