* Update singer template. * Update source python. * Update http python. * Fix a bug where the template tests were not previously running.
15 lines
405 B
Groovy
15 lines
405 B
Groovy
plugins {
|
|
id 'airbyte-python'
|
|
id 'airbyte-docker'
|
|
id 'airbyte-source-acceptance-test'
|
|
}
|
|
|
|
airbytePython {
|
|
moduleDirectory 'source_scaffold_source_python_singer'
|
|
}
|
|
|
|
dependencies {
|
|
implementation files(project(':airbyte-integrations:bases:source-acceptance-test').airbyteDocker.outputs)
|
|
implementation files(project(':airbyte-integrations:bases:base-python').airbyteDocker.outputs)
|
|
}
|