Skip to content

Commit

Permalink
Fix vision failure on Python 3
Browse files Browse the repository at this point in the history
Change-Id: Ieb53e6cdd8b1a70089b970b7a2aa57dd3d24c3de
  • Loading branch information
Jon Wayne Parrott committed Oct 14, 2016
1 parent 9ee1995 commit 0cf9d4f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions vision/cloud-client/quickstart_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,17 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest
import six

import quickstart


@pytest.mark.xfail(
six.PY3,
strict=True,
reason='https://github.com/GoogleCloudPlatform/google-cloud-python/issues'
'/2525')
def test_quickstart(capsys):
quickstart.run_quickstart()
out, _ = capsys.readouterr()
Expand Down

0 comments on commit 0cf9d4f

Please sign in to comment.