[go: up one dir, main page]

Menu

[e2cd0f]: / Makefile  Maximize  Restore  History

Download this file

26 lines (18 with data), 547 Bytes

 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
install: clean
pip3 install .
test:
docker build -f Dockerfile.test --tag=wapiti_test .
docker run --rm wapiti_test:latest
integration-test:
./tests/integration/run.sh
integration-clean:
rm -rf ./tests/integration/.test/* .dump_diff_file.txt
wapiti-endpoint:
docker build -f Dockerfile.endpoint -t wapiti-endpoint .
docker run --rm -dit --name wapiti-running-endpoint -p 80:80 wapiti-endpoint
clean:
rm -rf dist/ build/ wapiti3.egg-info/
style:
pylint --rcfile=.pylintrc wapitiCore
release: clean
python -m build --sdist --wheel