-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
35 lines (35 loc) · 842 Bytes
/
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
PY=python -m py_compile
.PHONY:
test
server
analyze
test:
pymake analyze
python3 src/main/server/Main.py --systemtest
server:
export PYTHONPATH="${PYTHONPATH}:./"
python3 src/main/server/Main.py --telegram
analyze:
pymake flake
pymake pylama
python3 checkLocalization.py
flake:
pymake flake_main
pymake flake_client
pymake flake_systemtest
flake_main:
flake8 --format=html --htmldir=flake-report src/main/server
flake_client:
flake8 --format=html --htmldir=flake-report src/main/client
flake_systemtest:
flake8 --format=html --htmldir=flake-report src/systemtest
pylama:
pymake pylama_main
pymake pylama_client
pymake pylama_systemtest
pylama_main:
pylama -i W191,E501,E128,W503 src/main/server
pylama_client:
pylama -i W191,E501,E128,W503 src/main/client
pylama_systemtest:
pylama -i W191,E501,E128,W503 src/systemtest