Add a Makefile target for running the apispecs

This commit is contained in:
R Tyler Croy 2020-11-21 15:40:56 -08:00
parent 6db9ca6d75
commit e6432839d8
1 changed files with 5 additions and 1 deletions

View File

@ -20,6 +20,10 @@ steps: release
./target/release/osp $$dir; \
done;
apispecs:
schemathesis run ./services/parser/apispec.yml --base-url=http://localhost:7672 --checks all
schemathesis run ./services/local-orchestrator/apispec.yml --base-url=http://localhost:7673 --checks all
test: contrib/shunit2/shunit2 ## Run the acceptance tests for steps
set -e
@for t in $$(find $(PWD)/stdlib -iname "tests" -type d); do \
@ -48,4 +52,4 @@ contrib/shunit2/shunit2:
################################################################################
.PHONY: clean diagram help steps release
.PHONY: apispecs clean diagram help steps release