Skip to content

Commit

Permalink
Merge branch 'master' into fix-datalabeling
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo authored May 8, 2020
2 parents 402279d + be55626 commit aaf9a19
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions iot/api-client/manager/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,7 @@ def send_command(
device_path = client.device_path(
project_id, cloud_region, registry_id, device_id)

# command = 'Hello IoT Core!'
data = command.encode('utf-8')

return client.send_command_to_device(device_path, data)
Expand Down
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 aaf9a19

Please sign in to comment.