-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CLI compatibility for TechDocs spec; fix failing integration tests
- Loading branch information
1 parent
31af357
commit 630e434
Showing
26 changed files
with
297 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ test/.env | |
.tmp* | ||
MANIFEST | ||
venv | ||
openapi*.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ info: | |
version: 1.0.0 | ||
servers: | ||
- url: http://localhost/v4 | ||
|
||
paths: | ||
/foo/bar: | ||
get: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
openapi: 3.0.1 | ||
info: | ||
title: API Specification | ||
version: 1.0.0 | ||
servers: | ||
- url: http://localhost/v19 | ||
paths: | ||
/foo/bar: | ||
get: | ||
operationId: fooBarGet | ||
responses: | ||
'200': | ||
description: foobar | ||
content: | ||
application/json: {} | ||
delete: | ||
operationId: fooBarDelete | ||
servers: | ||
- url: http://localhost/v12beta | ||
responses: | ||
'200': | ||
description: foobar | ||
content: | ||
application/json: {} | ||
/{apiVersion}/bar/foo: | ||
parameters: | ||
- name: apiVersion | ||
in: path | ||
required: true | ||
schema: | ||
type: string | ||
default: v9canary | ||
get: | ||
operationId: barFooGet | ||
responses: | ||
'200': | ||
description: foobar | ||
content: | ||
application/json: {} | ||
post: | ||
operationId: barFooPost | ||
servers: | ||
- url: http://localhost/v100beta | ||
responses: | ||
'200': | ||
description: foobar | ||
content: | ||
application/json: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -244,7 +244,7 @@ def get_user_id(): | |
"--delimiter", | ||
",", | ||
"--format", | ||
"id", | ||
"username", | ||
] | ||
) | ||
.stdout.decode() | ||
|
Oops, something went wrong.