Skip to content
Snippets Groups Projects
Commit 9af0008f authored by Colton Leekley-Winslow's avatar Colton Leekley-Winslow Committed by GitHub
Browse files

Merge pull request #430 from scitran/abao-jsonschema-ref-fix

Abao jsonschema ref fix
parents a46c0027 7fb713ca
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ case "$1-$2" in
-f test/docker-compose.yml \
run \
--rm \
--entrypoint "abao /usr/src/raml/api.raml --server=http://scitran-core:8080/api --hookfiles=/usr/src/tests/abao/abao_test_hooks.js" \
--entrypoint "/bin/bash -c 'cd /usr/src/raml/schemas/definitions && abao /usr/src/raml/api.raml --server=http://scitran-core:8080/api --hookfiles=/usr/src/tests/abao/abao_test_hooks.js'" \
integration-test &&
docker-compose \
-f test/docker-compose.yml \
......
......@@ -9,7 +9,7 @@
"type": "string"
},
"ssl_cert": {
"type": "null"
"type": ["null", "string"]
},
"api_url": {
"type": "string"
......
......@@ -20,7 +20,7 @@ RUN apt-get update && apt-get -y install nodejs
# Install abao: https://github.com/cybertk/abao
# Using our fork of abao to expand jsonschema refs
RUN npm install -g git+https://github.com/flywheel-io/abao.git#add-jsonschema-deref
RUN npm install -g git+https://github.com/flywheel-io/abao.git#better-jsonschema-ref
# Install newman for running postman collection tests from CLI
RUN npm install -g newman
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment