Skip to content

Commit

Permalink
Skip speech api test for now.
Browse files Browse the repository at this point in the history
Travis isn't liking it..
  • Loading branch information
J C committed Apr 13, 2016
1 parent 8dfe42a commit 7c4b988
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions speech/api/speech_streaming_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,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
@pytest.mark.skip(reason='speech api is being 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 7c4b988

Please sign in to comment.