forked from ansible-collections/servicenow.itsm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
68 lines (54 loc) · 2.04 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
# Make sure we have ansible_collections/servicenow/itsm as a prefix. This is
# ugly as hack, but it works. I suggest all future developer to treat next few
# lines as an opportunity to learn a thing or two about GNU make ;)
collection := $(notdir $(realpath $(CURDIR) ))
namespace := $(notdir $(realpath $(CURDIR)/.. ))
toplevel := $(notdir $(realpath $(CURDIR)/../..))
err_msg := Place collection at <WHATEVER>/ansible_collections/servicenow/itsm
ifeq (true,$(CI))
$(info Running in CI setting, skipping directory checks.)
else ifneq (itsm,$(collection))
$(error $(err_msg))
else ifneq (servicenow,$(namespace))
$(error $(err_msg))
else ifneq (ansible_collections,$(toplevel))
$(error $(err_msg))
endif
python_version := $(shell \
python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))' \
)
unit_test_targets := $(shell find tests/unit -name '*.py')
integration_test_targets := $(shell ls tests/integration/targets)
.PHONY: help
help:
@echo Available targets:
@fgrep "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sort
# Developer convenience targets
.PHONY: format
format: ## Format python code with black
black -t py27 plugins tests/unit
.PHONY: clean
clean: ## Remove all auto-generated files
rm -rf tests/output
.PHONY: $(unit_test_targets)
$(unit_test_targets):
ansible-test units --requirements --python $(python_version) $@
.PHONY: $(integration_test_targets)
$(integration_test_targets):
ansible-test integration --requirements --python $(python_version) --diff $@
# Things also used in CI/CD
.PHONY: sanity
sanity: ## Run sanity tests
pip install -r sanity.requirements
black -t py27 --check --diff --color plugins tests/unit
flake8
ansible-test sanity --docker
.PHONY: units
units: ## Run unit tests
-ansible-test coverage erase # On first run, there is nothing to erase.
ansible-test units --docker --coverage
ansible-test coverage html --requirements
ansible-test coverage report --omit 'tests/*' --show-missing
.PHONY: integration
integration: ## Run integration tests
ansible-test integration --docker --diff