Skip to content

Commit

Permalink
Merge pull request #250 from GoogleCloudPlatform/streaming
Browse files Browse the repository at this point in the history
Comment out speech api test
  • Loading branch information
Jon Wayne Parrott committed Apr 13, 2016
2 parents 691e88e + 1a71985 commit ac5e73a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions speech/api/speech_streaming_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import re
import sys

from gcp.testing.flaky import flaky
import pytest

import speech_streaming
Expand Down Expand Up @@ -53,9 +54,11 @@ def mock_audio_stream(channels, rate, chunk):
return mock_audio_stream


# grpc doesn't yet support python3 https://github.com/grpc/grpc/issues/282
@flaky
@pytest.mark.skipif(
sys.version_info >= (3, 0), reason="can't get grpc lib to work in python3")
sys.version_info >= (3, 0),
reason=("grpc doesn't yet support python3 "
'https://github.com/grpc/grpc/issues/282'))
def test_main(resource, monkeypatch, capsys):
monkeypatch.setattr(
speech_streaming, 'record_audio',
Expand Down

0 comments on commit ac5e73a

Please sign in to comment.