Skip to content
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.

Commit

Permalink
🦉 Updates from OwlBot
Browse files Browse the repository at this point in the history
  • Loading branch information
tkarasyova committed Feb 9, 2022
1 parent ca93750 commit 7cf817e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 18 deletions.
8 changes: 0 additions & 8 deletions .kokoro/continuous/common.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,3 @@ env_vars: {
key: "TRAMPOLINE_BUILD_FILE"
value: "github/python-retail/.kokoro/build.sh"
}
env_vars: {
key: "BUCKET_NAME"
value: "crs-interactive-tutorials-products"
}
env_vars: {
key: "EVENTS_BUCKET_NAME"
value: "crs-interactive-tutorials-events"
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@

def test_import_products_bq():
output = str(
subprocess.check_output(
"python import_products_big_query_table.py", shell=True
)
subprocess.check_output("python import_products_big_query_table.py", shell=True)
)

assert re.match(".*import products from big query table request.*", output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@


def test_import_products_gcs():
output = str(
subprocess.check_output("python import_products_gcs.py", shell=True)
)
output = str(subprocess.check_output("python import_products_gcs.py", shell=True))

assert re.match(".*import products from google cloud source request.*", output)
assert re.match('.*input_uris: "gs://.*/products.json".*', output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@

def test_import_products_gcs():
output = str(
subprocess.check_output(
"python import_products_inline_source.py", shell=True
)
subprocess.check_output("python import_products_inline_source.py", shell=True)
)

assert re.match(".*import products from inline source request.*", output)
Expand Down
2 changes: 1 addition & 1 deletion samples/interactive-tutorials/product/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
# 'gcloud_project_env': 'BUILD_SPECIFIC_GCLOUD_PROJECT',
# A dictionary you want to inject into your test. Don't put any
# secrets here. These values will override predefined values.
"envs": {"BUCKET_NAME": "retail-interactive-tutorials"}
"envs": {"BUCKET_NAME": "retail-interactive-tutorials"},
}

0 comments on commit 7cf817e

Please sign in to comment.