Skip to content

Commit

Permalink
Revert "Source Google Adwords: fix CI (#2929)"
Browse files Browse the repository at this point in the history
This reverts commit 76cf4e0.
  • Loading branch information
Zirochkaa committed May 6, 2021
1 parent 76cf4e0 commit 1bab6aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ENV AIRBYTE_IMPL_PATH="SourceGoogleAdwordsSinger"
WORKDIR /airbyte/integration_code
COPY $CODE_PATH ./$CODE_PATH
COPY setup.py ./
RUN pip install tap-adwords==1.12.0
RUN pip install .

LABEL io.airbyte.version=0.2.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ dependencies {
implementation files(project(':airbyte-integrations:bases:base-singer').airbyteDocker.outputs)
}

// used to allow local iteration to work
task('installSingerTap', type: PythonTask) {
module = "pip"
command = "install tap-adwords==1.12.0"
}
installReqs.dependsOn installSingerTap

airbyteStandardSourceTestFile {
// For more information on standard source tests, see https://docs.airbyte.io/contributing-to-airbyte/building-new-connector/testing-connectors
Expand Down

0 comments on commit 1bab6aa

Please sign in to comment.