Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(sample): mark a test with flaky
fixes #75
  • Loading branch information
Takashi Matsuo committed Sep 3, 2020
commit 9546e9aea90b0cabe089e7a1b303376c290200a7
1 change: 1 addition & 0 deletions samples/snippets/quickstart_searchallresources_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def asset_dataset(bigquery_client):
raise e


@pytest.mark.flaky(max_runs=3, min_passes=1)
def test_search_all_resources(asset_dataset, capsys):
scope = "projects/{}".format(PROJECT)
query = "name:{}".format(DATASET)
Expand Down
1 change: 1 addition & 0 deletions samples/snippets/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
backoff==1.10.0
flaky==3.7.0
pytest==5.4.3