-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
101 lines (66 loc) · 3.42 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
########################################################################################################################
# Variables
########################################################################################################################
BETA_DIST = ./beta_dist
CLEAN_TARGETS = ./.cache ./*.egg-info $(BETA_DIST) $(DIST) ./build ./htmlcov .coverage coverage.xml
DIST = ./dist
GPG_ID = CA0B97334F9449EB5AFFCB93240BD54D194E3161
########################################################################################################################
# `make help` Needs to be first so it is ran when just `make` is called
########################################################################################################################
.PHONY: help
help: # Show this help screen
@ack '^[a-zA-Z_-]+:.*?# .*$$' $(MAKEFILE_LIST) |\
sort -k1,1 |\
awk 'BEGIN {FS = ":.*?# "}; {printf "\033[1m%-30s\033[0m %s\n", $$1, $$2}'
########################################################################################################################
# Linting
########################################################################################################################
.PHONY: pep8
pep8: # Run pep8 against project files
pep8 --verbose ./nistbeacon/* ./scripts/* ./tests/*
.PHONY: pylint
pylint: # Run pylint against project files
pylint --rcfile=./.pylintrc --reports=y --output-format=text nistbeacon
.PHONY: version-check
version-check: # Verify the project version string is correct across the project
./scripts/version_manager.py check
########################################################################################################################
# Testing
########################################################################################################################
.PHONY: unittest
unittest: # Run only unit tests
py.test --cov nistbeacon --cov-report html ./tests/unit/
.PHONY: integration
integration: # Run only integration tests
py.test ./tests/integration/
########################################################################################################################
# Project Building
########################################################################################################################
.PHONY: build
build: build-pre build-package # Build the release package
.PHONY: build-beta
build-beta: build-pre build-beta-package # Build the beta package
.PHONY: clean
clean: # Clean up build, test, and other project artifacts
rm -rf $(CLEAN_TARGETS) && \
find . | grep -E "(__pycache__|\.pyc|\.pyo$$)" | xargs rm -rf && \
:
#---------------------------------------------------------------------------------------------------
# Build Subcommands
#---------------------------------------------------------------------------------------------------
# Perform required pre-build steps for all build types
.PHONY: build-pre
build-pre: clean pep8 pylint unittest integration version-check
# Build 'sdist' and 'bdist_wheel' for this package
.PHONY: build-package
build-package:
python setup.py sdist --dist-dir $(DIST) bdist_wheel --dist-dir $(DIST)
# Build 'sdist' and 'bdist_wheel' for the beta package
.PHONY: build-beta-package
build-beta-package:
./scripts/version_manager.py set-beta-build && \
./scripts/version_manager.py check && \
python setup.py sdist --dist-dir $(BETA_DIST) bdist_wheel --dist-dir $(BETA_DIST) && \
./scripts/version_manager.py unset-beta-build && \
: