Skip to content

Commit

Permalink
Reenable integration test (#586)
Browse files Browse the repository at this point in the history
Co-authored-by: Great Expectations <[email protected]>
  • Loading branch information
anthonyburdi and tiny-tim-bot authored Dec 10, 2024
1 parent 4e5aae0 commit 5cd9992
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "great_expectations_cloud"
version = "20241209.0.dev1"
version = "20241210.0.dev0"
description = "Great Expectations Cloud"
authors = ["The Great Expectations Team <[email protected]>"]
repository = "https://github.com/great-expectations/cloud"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,24 +94,16 @@ def org_id_env_var_local():
return "0ccac18e-7631-4bdd-8a42-3c35cce574c6"


@pytest.fixture(scope="module")
def cloud_base_url_local() -> str:
return "http://localhost:7000"


@pytest.fixture
def token_env_var_local():
return os.environ.get("GX_CLOUD_ACCESS_TOKEN")


@pytest.mark.skip(
"This test fails due to a connection error when attempting to call the backend. It is a problem with the test setup, not the code which was demoed, and this test passes locally."
)
def test_running_schema_change_expectation_action(
context: CloudDataContext,
user_api_token_headers_org_admin_sc_org,
org_id_env_var_local: str,
cloud_base_url_local: str,
cloud_base_url: str,
token_env_var_local: str,
seed_and_cleanup_test_data,
):
Expand All @@ -127,7 +119,7 @@ def test_running_schema_change_expectation_action(

action = GenerateSchemaChangeExpectationsAction(
context=context,
base_url=cloud_base_url_local,
base_url=cloud_base_url,
organization_id=uuid.UUID(org_id_env_var_local),
auth_key=token_env_var_local,
)
Expand Down

0 comments on commit 5cd9992

Please sign in to comment.