-
Notifications
You must be signed in to change notification settings - Fork 49
/
Makefile
86 lines (66 loc) · 2.64 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
export PYTHONPATH := $(CURDIR)/lib/:$(CURDIR)/tests/
PYTHON := python
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)
kodi_branch ?= matrix
ifdef release
zip_name = $(name)-$(version).zip
else
zip_name = $(name)-$(version)-$(git_branch)-$(git_hash).zip
endif
include_files = addon.xml changelog.txt default.py LICENSE.txt README.md lib/ resources/
include_paths = $(patsubst %,$(name)/%,$(include_files))
exclude_files = \*.new \*.orig \*.pyc \*.pyo
zip_dir = $(name)/
languages = $(filter-out en_gb, $(patsubst resources/language/resource.language.%, %, $(wildcard resources/language/*)))
blue = \e[1;34m
white = \e[1;37m
reset = \e[0;39m
all: check test build
zip: build
test: check test-unit test-run
check: check-tox check-pylint check-translations
check-tox:
@echo -e "$(white)=$(blue) Starting sanity tox test$(reset)"
$(PYTHON) -m tox -q
check-pylint:
@echo -e "$(white)=$(blue) Starting sanity pylint test$(reset)"
$(PYTHON) -m pylint -e useless-suppression lib/ tests/
check-translations:
@echo -e "$(white)=$(blue) Starting language test$(reset)"
@-$(foreach lang,$(languages), \
msgcmp --use-untranslated resources/language/resource.language.$(lang)/strings.po resources/language/resource.language.en_gb/strings.po; \
)
check-untranslated:
@echo -e "$(white)=$(blue) Starting language test$(reset)"
@-$(foreach lang,$(languages), \
msgcmp resources/language/resource.language.$(lang)/strings.po resources/language/resource.language.en_gb/strings.po; \
)
check-addon: clean
@echo -e "$(white)=$(blue) Starting sanity addon tests$(reset)"
kodi-addon-checker . --branch=$(kodi_branch)
kill-proxy:
-pkill -ef '$(PYTHON) -m proxy'
unit: test-unit
test-unit: clean kill-proxy
@echo -e "$(white)=$(blue) Starting unit tests$(reset)"
-$(PYTHON) -m proxy --hostname 127.0.0.1 --log-level DEBUG &
$(PYTHON) -m unittest discover -v
pkill -ef '$(PYTHON) -m proxy'
test-run:
@echo -e "$(white)=$(blue) Run CLI$(reset)"
$(PYTHON) default.py
build: 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:
@echo -e "$(white)=$(blue) Cleaning up$(reset)"
find . -name '*.py[cod]' -type f -delete
find . -name '__pycache__' -type d -delete
find tests/userdata/ -mindepth 1 -not -name '*settings.json' -delete
rm -rf .pytest_cache/ .tox/ lib/inputstreamhelper.egg-info/
rm -f *.log