-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMakefile
58 lines (44 loc) · 1.58 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
ENVS := flake8,py27,py36
export PYTHONPATH := $(CURDIR)/lib
addon_xml := addon.xml
# Collect information to build as sensible package name
name = $(shell xmllint --xpath 'string(/addon/@id)' $(addon_xml))
version = $(shell xmllint --xpath 'string(/addon/@version)' $(addon_xml))
git_branch = $(shell git rev-parse --abbrev-ref HEAD)
git_hash = $(shell git rev-parse --short HEAD)
zip_name = $(name)-$(version)-$(git_branch)-$(git_hash).zip
include_files = addon.xml changelog.txt LICENSE.txt README.md lib/
include_paths = $(patsubst %,$(name)/%,$(include_files))
exclude_files = \*.new \*.orig \*.pyc \*.pyo
zip_dir = $(name)/
blue = \e[1;34m
white = \e[1;37m
reset = \e[0m
.PHONY: test
all: test
package: zip
test: sanity unit addon
sanity: pylint
tox:
@echo -e "$(white)=$(blue) Starting sanity tox test$(reset)"
tox -q -e $(ENVS)
pylint:
@echo -e "$(white)=$(blue) Starting sanity pylint test$(reset)"
pylint lib/*.py
addon: clean
@echo -e "$(white)=$(blue) Starting sanity addon tests$(reset)"
kodi-addon-checker . --branch=krypton
kodi-addon-checker . --branch=leia
unit:
@echo -e "$(white)=$(blue) Starting unit tests$(reset)"
pytest lib/tests.py
# NOTE: To make this work you need to clone to $name-$version
zip: clean
@echo -e "$(white)=$(blue) Building new package$(reset)"
@rm -f ../$(zip_name)
cd ..; zip -r $(zip_name) $(include_paths) -x $(exclude_files)
@echo -e "$(white)=$(blue) Successfully wrote package as: $(white)../$(zip_name)$(reset)"
clean:
find lib/ -name '*.pyc' -type f -delete
find lib/ -name '__pycache__' -type d -delete
rm -rf .pytest_cache/ .tox/ *.log