This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
makefile
97 lines (89 loc) · 2.96 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
.PHONY: test
test:
# Set up variables.
$(eval STD_OUT_LOG := ./zdevelop/tests/_reports/test_stdout.txt)
$(eval STD_ERR_LOG := ./zdevelop/tests/_reports/test_stderr.txt)
$(eval FULL_LOG := ./zdevelop/tests/_reports/test_full.txt)
$(eval COVERAGE_LOG := ./zdevelop/tests/_reports/coverage.out)
$(eval JUNIT_REPORT := ./zdevelop/tests/_reports/junit.xml)
$(eval TEST_REPORT := ./zdevelop/tests/_reports/test_results.html)
$(eval COVERAGE_REPORT := ./zdevelop/tests/_reports/coverage.html)
# make the reports directory
-mkdir ./zdevelop/tests/_reports
# Clear the output files.
echo > $(STD_OUT_LOG)
echo > $(STD_ERR_LOG)
# Run tests. I honestly don't quite understand the piping bullshit that has to
# happen here to send stdout and stderr to tee separately ( in order to
# both save and display them ), but the internet says this is the solution and it
# works.
-python3 ./zdevelop/make_scripts/go_make_test.py
cat $(FULL_LOG) | go-junit-report > $(JUNIT_REPORT)
# Open Reports
-xunit-viewer -r $(JUNIT_REPORT) -o $(TEST_REPORT)
-go tool cover -html=$(COVERAGE_LOG) -o $(COVERAGE_REPORT)
-python3 ./zdevelop/make_scripts/py_open_test_reports.py
.PHONY: lint
lint:
-revive -config revive.toml ./...
-go vet ./...
-golint ./...
-find . -type f | grep -v zdevelop/ | grep -v zdocs/build/ | xargs misspell -error
.PHONY: format
format:
-gofmt -s -w ./
-gofmt -s -w ./zdevelop/tests
.PHONY: venv
venv:
ifeq ($(py), )
$(eval PY_PATH := python3)
else
$(eval PY_PATH := $(py))
endif
$(eval VENV_PATH := $(shell $(PY_PATH) ./zdevelop/make_scripts/go_make_venv.py))
@echo "venv created! To enter virtual env, run:"
@echo ". ~/.bash_profile"
@echo "then run:"
@echo "$(VENV_PATH)"
.PHONY: install-dev
install-dev:
pip install --upgrade pip
pip install --no-cache-dir -e .[build,doc,dev,lint,test]
go mod tidy
# Installs command line tools for development
.PHONY: install-tools
install-tools:
# Creates html report of tests.
-go install github.com/ains/go-test-html@latest
# Creates API doc server.
-go install golang.org/x/tools/cmd/godoc@latest
# Downloads module APIs from API server.
-go install github.com/illuscio-dev/docmodule-go@latest
# Linter
-go install github.com/mgechev/revive@latest
# Converts to junit for making html reports
-go install github.com/jstemmer/go-junit-report@latest
# Catches misspelling
-go install github.com/client9/misspell/cmd/misspell@latest
# Converts junit reports into pretty html
-npm i -g xunit-viewer
# Creates docs.
.PHONY: doc
doc:
rm -rf ./zdocs/build
mkdir ./zdocs/build
python setup.py build_sphinx -E
sleep 1
-python3 ./zdevelop/make_scripts/open_docs.py
# Remove Deleted files from git
git add -u
# Add any new files to git
git add zdocs/*
.PHONY: name
name:
$(eval PATH_NEW := $(shell python3 ./zdevelop/make_scripts/go_make_name.py $(n)))
@echo "library renamed! to switch your current directory, use the following \
command:\ncd '$(PATH_NEW)'"
.PHONY: proto
proto:
python3 ./zdevelop/make_scripts/go_gen_proto.py