Skip to content

Commit

Permalink
[vision] fix: mark a test as flaky (#3709)
Browse files Browse the repository at this point in the history
fixes #3702
  • Loading branch information
Takashi Matsuo authored May 8, 2020
1 parent 04bbc2a commit 5e5b744
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions vision/cloud-client/web/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
flaky==3.6.1
pytest==5.3.2
3 changes: 3 additions & 0 deletions vision/cloud-client/web/web_detect_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest

import web_detect

ASSET_BUCKET = "cloud-samples-data"
Expand All @@ -24,6 +26,7 @@ def test_detect_file(capsys):
assert 'description' in out.lower()


@pytest.mark.flaky(max_runs=3, min_passes=1)
def test_detect_web_gsuri(capsys):
file_name = ('gs://{}/vision/landmark/pofa.jpg'.format(
ASSET_BUCKET))
Expand Down

0 comments on commit 5e5b744

Please sign in to comment.