Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skip automl model create/delete test #1608

Merged
merged 2 commits into from
Aug 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions language/automl/model_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@
import os

from google.cloud import automl_v1beta1 as automl
import pytest

import automl_natural_language_model

project_id = os.environ["GCLOUD_PROJECT"]
compute_region = "us-central1"


@pytest.mark.skip(reason="creates too many models")
def test_model_create_status_delete(capsys):
# create model
client = automl.AutoMlClient()
Expand Down
2 changes: 2 additions & 0 deletions translate/automl/model_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@
import os

from google.cloud import automl_v1beta1 as automl
import pytest

import automl_translation_model

project_id = os.environ["GCLOUD_PROJECT"]
compute_region = "us-central1"


@pytest.mark.skip(reason="creates too many models")
def test_model_create_status_delete(capsys):
# create model
client = automl.AutoMlClient()
Expand Down
2 changes: 2 additions & 0 deletions vision/automl/model_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@
import os

from google.cloud import automl_v1beta1 as automl
import pytest

import automl_vision_model

project_id = os.environ["GCLOUD_PROJECT"]
compute_region = "us-central1"


@pytest.mark.skip(reason="creates too many models")
def test_model_create_status_delete(capsys):
# create model
client = automl.AutoMlClient()
Expand Down