Skip to content

Commit

Permalink
disable cts
Browse files Browse the repository at this point in the history
  • Loading branch information
millotp committed Oct 27, 2022
1 parent 5060531 commit aa28692
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public void run(Map<String, CodegenModel> models, Map<String, CodegenOperation>

for (Map.Entry<String, CodegenOperation> entry : operations.entrySet()) {
String operationId = entry.getKey();

if (!cts.containsKey(operationId)) {
throw new CTSException(
"operationId '" +
Expand Down
2 changes: 1 addition & 1 deletion scripts/cts/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export async function ctsGenerateMany(

const langs = [...new Set(generators.map((gen) => gen.language))];
for (const lang of langs) {
if (!getTestOutputFolder(lang)) {
if (lang === 'go' || !getTestOutputFolder(lang)) {
continue;
}
await formatter(lang, toAbsolutePath(`tests/output/${lang}`), verbose);
Expand Down

0 comments on commit aa28692

Please sign in to comment.