From 87f93ee435b77271c2ce5de55780d011e71f8740 Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Wed, 5 Apr 2017 15:21:33 -0700 Subject: [PATCH] Remove resource [(#890)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/890) * Remove resource fixture * Remove remote resource --- samples/snippets/transcribe_async_test.py | 10 +++++++--- samples/snippets/transcribe_streaming_test.py | 8 ++++++-- samples/snippets/transcribe_test.py | 9 ++++++--- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/samples/snippets/transcribe_async_test.py b/samples/snippets/transcribe_async_test.py index 6142d43d..7d66747e 100644 --- a/samples/snippets/transcribe_async_test.py +++ b/samples/snippets/transcribe_async_test.py @@ -11,19 +11,23 @@ # See the License for the specific language governing permissions and # limitations under the License. +import os import re import transcribe_async +RESOURCES = os.path.join(os.path.dirname(__file__), 'resources') -def test_transcribe(resource, capsys): - transcribe_async.transcribe_file(resource('audio.raw')) + +def test_transcribe(capsys): + transcribe_async.transcribe_file( + os.path.join(RESOURCES, 'audio.raw')) out, err = capsys.readouterr() assert re.search(r'how old is the Brooklyn Bridge', out, re.DOTALL | re.I) -def test_transcribe_gcs(resource, capsys): +def test_transcribe_gcs(capsys): transcribe_async.transcribe_gcs( 'gs://python-docs-samples-tests/speech/audio.flac') out, err = capsys.readouterr() diff --git a/samples/snippets/transcribe_streaming_test.py b/samples/snippets/transcribe_streaming_test.py index bd3f5cb5..2b3ca8ee 100644 --- a/samples/snippets/transcribe_streaming_test.py +++ b/samples/snippets/transcribe_streaming_test.py @@ -11,13 +11,17 @@ # See the License for the specific language governing permissions and # limitations under the License. +import os import re import transcribe_streaming +RESOURCES = os.path.join(os.path.dirname(__file__), 'resources') -def test_transcribe_streaming(resource, capsys): - transcribe_streaming.transcribe_streaming(resource('audio.raw')) + +def test_transcribe_streaming(capsys): + transcribe_streaming.transcribe_streaming( + os.path.join(RESOURCES, 'audio.raw')) out, err = capsys.readouterr() assert re.search(r'how old is the Brooklyn Bridge', out, re.DOTALL | re.I) diff --git a/samples/snippets/transcribe_test.py b/samples/snippets/transcribe_test.py index 5940fc7f..d1e9f633 100644 --- a/samples/snippets/transcribe_test.py +++ b/samples/snippets/transcribe_test.py @@ -11,19 +11,22 @@ # See the License for the specific language governing permissions and # limitations under the License. +import os import re import transcribe +RESOURCES = os.path.join(os.path.dirname(__file__), 'resources') -def test_transcribe_file(resource, capsys): - transcribe.transcribe_file(resource('audio.raw')) + +def test_transcribe_file(capsys): + transcribe.transcribe_file(os.path.join(RESOURCES, 'audio.raw')) out, err = capsys.readouterr() assert re.search(r'how old is the Brooklyn Bridge', out, re.DOTALL | re.I) -def test_transcribe_gcs(resource, capsys): +def test_transcribe_gcs(capsys): transcribe.transcribe_gcs( 'gs://python-docs-samples-tests/speech/audio.flac') out, err = capsys.readouterr()