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

fix(eap): re-enable tests and entities now that migrations ran #6325

Merged
merged 1 commit into from
Sep 19, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ storage:
key: spans_num_attrs
set_key: events_analytics_platform

readiness_state: limited
readiness_state: partial

schema:
columns:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ storage:
key: spans_str_attrs
set_key: events_analytics_platform

readiness_state: limited
readiness_state: partial

schema:
columns:
Expand Down
1 change: 0 additions & 1 deletion tests/web/rpc/test_trace_item_attribute_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def setup_teardown(clickhouse_db: None, redis_db: None) -> None:
write_raw_unprocessed_events(spans_storage, messages) # type: ignore


@pytest.mark.skip(reason="temporarily disabled to allow a migration to run")
@pytest.mark.clickhouse_db
@pytest.mark.redis_db
class TestTraceItemAttributes(BaseApiTest):
Expand Down
1 change: 0 additions & 1 deletion tests/web/rpc/test_trace_item_attribute_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ def setup_teardown(clickhouse_db: None, redis_db: None) -> None:
write_raw_unprocessed_events(spans_storage, messages) # type: ignore


@pytest.mark.skip(reason="temporarily disabled to allow a migration to run")
@pytest.mark.clickhouse_db
@pytest.mark.redis_db
class TestTraceItemAttributes(BaseApiTest):
Expand Down
Loading