This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
103 lines (85 loc) · 1.94 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
102
.PHONY: clean
clean: clean-build clean-pyc clean-test clean-docs
.PHONY: clean-build
clean-build:
rm -fr build/
rm -fr dist/
rm -fr .eggs/
rm -fr pip-wheel-metadata
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -fr {} +
rm -fr Pipfile.lock
.PHONY: clean-docs
clean-docs:
rm -fr site/
.PHONY: clean-pyc
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
find . -name '.DS_Store' -exec rm -fr {} +
.PHONY: clean-test
clean-test:
rm -fr .tox/
rm -f .coverage
find . -name ".coverage*" -not -name ".coveragerc" -exec rm -fr "{}" \;
rm -fr coverage.xml
rm -fr htmlcov/
rm -fr .hypothesis
rm -fr .pytest_cache
rm -fr .mypy_cache/
rm -fr input_file
rm -fr output_file
find . -name 'log.txt' -exec rm -fr {} +
find . -name 'log.*.txt' -exec rm -fr {} +
.PHONY: lint
lint:
pipenv run black src/packages/eightballer
pipenv run isort src/packages/eightballer
# pipenv run vulture src/
.PHONY: security
security:
bandit -s B104 -r src/
.PHONY: vulture
vulture:
if [ "0" == "$(shell ((vulture src/ whitelist.py ) | wc -l))" ];\
then\
echo "ah code is all used."; \
else \
echo "Not used!"; \
fi
if [ "0" == "$(shell ((vulture src/ whitelist.py ) | wc -l))" ];\
then\
echo "deployer code is all used."; \
else \
echo "Not used!"; \
fi
.PHONY: static
static:
mypy src/
.PHONY: new_env
new_env: clean
pipenv --rm;\
pipenv --python 3.8;\
echo "Enter clean virtual environment now: 'pipenv shell'.";\
.PHONY: install_env
install_env:
pipenv install --dev --skip-lock
.PHONY: install_hooks
install_hooks:
cp scripts/pre-push .git/hooks/pre-push
.PHONY: setup_repo
setup_repo:
sudo rm -r ./.git
git init
cp scripts/pre-push .git/hooks/pre-push
.PHONY: tests
tests:
pipenv run python -m pytest
.PHONY: run_app
run_app:
pipenv run app
.PHONY: shell
shell:
pipenv shell