Skip to content

Commit

Permalink
generate legacy source test referecne docs in the right location (#5080)
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifnada committed Jul 29, 2021
1 parent 54edf70 commit d07a979
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ task generateSourceTestDocs(type: Javadoc) {
md += "## ${methodName}\n\n"
md += "${methodDocstring != null ? methodDocstring.text().replaceAll(/([()])/, '\\\\$1') : 'No method description was provided'}\n\n"
}
def outputDoc = new File("${rootDir}/docs/contributing-to-airbyte/building-new-connector/standard-source-tests.md")
def outputDoc = new File("${rootDir}/docs/connector-development/testing-connectors/standard-source-tests.md")
outputDoc.write "# Standard Source Test Suite\n\n"
outputDoc.append "Test methods start with `test`. Other methods are internal helpers in the java class implementing the test suite.\n\n"
outputDoc.append md
Expand Down

0 comments on commit d07a979

Please sign in to comment.