added integration commands for the makefile

This commit is contained in:
RMI78 2023-08-11 12:24:16 +00:00 committed by bretfourbe
parent 239f002126
commit e076399f88
1 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,12 @@ 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