1
0
mirror of synced 2025-12-25 11:06:55 -05:00
Files
airbyte/airbyte-integrations/connectors/source-python-http-tutorial/build.gradle
Yevhenii 776ca69961 🎉 Source Python HTTP Tutorial: Migrate to CDK, remove deprecated dependencies (#8433)
* Migrate Python HTTP Tutorial to CDK, update required in spec.json
2021-12-03 15:29:44 +02:00

32 lines
1.3 KiB
Groovy

plugins {
id 'airbyte-python'
id 'airbyte-docker'
id 'airbyte-standard-source-test-file'
}
airbytePython {
moduleDirectory 'source_python_http_tutorial'
}
airbyteStandardSourceTestFile {
// For more information on standard source tests, see https://docs.airbyte.io/connector-development/testing-connectors
// All these input paths must live inside this connector's directory (or subdirectories)
// TODO update the spec JSON file
specPath = "source_python_http_tutorial/spec.json"
// configPath points to a config file which matches the spec.json supplied above. secrets/ is gitignored by default, so place your config file
// there (in case it contains any credentials)
// TODO update the config file to contain actual credentials
configPath = "sample_files/config.json"
// TODO update the sample configured_catalog JSON for use in testing
// Note: If your source supports incremental syncing, then make sure that the catalog that is returned in the get_catalog method is configured
// for incremental syncing (e.g. include cursor fields, etc).
configuredCatalogPath = "sample_files/configured_catalog.json"
}
dependencies {
implementation files(project(':airbyte-integrations:bases:base-standard-source-test-file').airbyteDocker.outputs)
}