Skip to content

Commit

Permalink
testing: start using btlr [(#3959)](#3959)
Browse files Browse the repository at this point in the history
* testing: start using btlr

The binary is at gs://cloud-devrel-kokoro-resources/btlr/v0.0.1/btlr

* add period after DIFF_FROM

* use array for btlr args

* fix websocket tests

* add debug message

* wait longer for the server to spin up

* dlp: bump the wait timeout to 10 minutes

* [run] copy noxfile.py to child directory to avoid gcloud issue

* [iam] fix: only display description when the key exists

* use uuid4 instead of uuid1

* [iot] testing: use the same format for registry id

* Stop asserting Out of memory not in the output

* fix missing imports

* [dns] testing: more retries with delay

* [dlp] testing: longer timeout

* use the max-concurrency flag

* use 30 workers

* [monitoring] use multiple projects

* [dlp] testing: longer timeout
  • Loading branch information
Takashi Matsuo authored and leahecole committed Sep 15, 2023
1 parent 22cea9d commit c3b1d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion videointelligence/samples/analyze/beta_snippets_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def video_path(tmpdir_factory):
@pytest.fixture(scope="function")
def bucket():
# Create a temporaty bucket to store annotation output.
bucket_name = str(uuid.uuid1())
bucket_name = f'tmp-{uuid.uuid4().hex}'
storage_client = storage.Client()
bucket = storage_client.create_bucket(bucket_name)

Expand Down

0 comments on commit c3b1d23

Please sign in to comment.