diff --git a/speech/api/README.md b/speech/api/README.md index e0c31dab2877..5b381b0c5bd5 100644 --- a/speech/api/README.md +++ b/speech/api/README.md @@ -39,10 +39,10 @@ for more information. ### Install the dependencies -* If you're running the `speechrest.py` sample: +* If you're running the `speech_rest.py` sample: ```sh - $ pip install requirements-speechrest.txt + $ pip install requirements-speech_rest.txt ``` * If you're running the `speech_streaming.py` sample: @@ -53,10 +53,10 @@ for more information. ## Run the example -* To run the `speechrest.py` sample: +* To run the `speech_rest.py` sample: ```sh - $ python speechrest.py resources/audio.raw + $ python speech_rest.py resources/audio.raw ``` You should see a response with the transcription result. diff --git a/speech/api/requirements-speechrest.txt b/speech/api/requirements-speech_rest.txt similarity index 100% rename from speech/api/requirements-speechrest.txt rename to speech/api/requirements-speech_rest.txt diff --git a/speech/api/speechrest.py b/speech/api/speech_rest.py similarity index 100% rename from speech/api/speechrest.py rename to speech/api/speech_rest.py diff --git a/speech/api/speechrest_test.py b/speech/api/speech_rest_test.py similarity index 96% rename from speech/api/speechrest_test.py rename to speech/api/speech_rest_test.py index 8f1d2851bfa5..0204e565ab81 100644 --- a/speech/api/speechrest_test.py +++ b/speech/api/speech_rest_test.py @@ -13,7 +13,7 @@ import re -from speechrest import main +from speech_rest import main def test_main(resource, capsys): diff --git a/speech/api/speech_streaming_test.py b/speech/api/speech_streaming_test.py index e44e613ea437..b5fd89c06897 100644 --- a/speech/api/speech_streaming_test.py +++ b/speech/api/speech_streaming_test.py @@ -53,6 +53,7 @@ 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.skipif( sys.version_info >= (3, 0), reason="can't get grpc lib to work in python3") def test_main(resource, monkeypatch, capsys):