blob: c1fafd227f0e7670a18a8254cca27c91fb36cfa4 (
plain)
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
103
104
105
|
#!/bin/sh
[ x$1 = x ] && echo "\
Small script for running developement tools.
Usage: $0 <command>
Commands:
dev Install developement envoronment
run Run the app in developement environment
pytest Run pytest unittests
pylint Do pylint
covhtml Make branch coverage report in html format
covff Genarate and open html coverage report in firefox
all Do it all: pytest, coverage report in firefox and pylint
install Build poetry package and install it for current user
" && exit 0
PIP=`which pipx`
[ x$PIP = x ] && PIP=`which pip`
[ x$PIP = x ] \
&& echo "This scripts needs pipx or pip to install dependencies." \
&& exit 1
export DEVSH_PRIN=">>$DEVSH_PRIN"
export DEVSH_PROUT="<<$DEVSH_PROUT"
echo "\033[32m$DEVSH_PRIN $0 $1 - started.\033[0m"
case $1 in
install-poetry)
$PIP install poetry
;;
install-latest-build)
$PIP install `ls dist/*.tar.gz -t -c -1 | head -1` \
&& echo "For uninstall please use '$PIP uninstall ...'"
;;
poetry-dev-deps)
PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring \
poetry install --no-root
;;
dev)
$0 install-poetry \
&& $0 poetry-dev-deps
;;
run)
DEBUG=1 poetry run python3 src/sliceitoff
;;
pytest)
poetry run pytest -v
;;
pylint)
poetry run python3 -m pylint src/sliceitoff/
;;
coverage)
poetry run python3 -m coverage run --branch -m pytest -v
;;
covhtml)
$0 coverage \
&& poetry run python3 -m coverage html
;;
covff)
$0 covhtml \
&& firefox htmlcov/index.html
;;
all)
$0 covff \
&& $0 pylint
;;
poetry-build)
poetry build
;;
install)
$0 install-poetry \
&& $0 poetry-build \
&& $0 install-latest-build
;;
*)
echo "\033[31m$DEVSH_PROUT $0 $1 - unknown command.\033[0m"
exit 1
;;
esac
STATUS=$?
[ $STATUS != 0 ] \
&& echo "\033[31m$DEVSH_PROUT $0 $1 - exited with code $STATUS.\033[0m" \
&& exit $STATUS
echo "\033[32m$DEVSH_PROUT $0 $1 - done.\033[0m"
|