FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

chore: Updated snowflake test to be more explicit about post apply entity_columns return value by franciscojavierarceo · Pull Request #4603 · feast-dev/feast · GitHub

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .py  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from feast import Field
from feast.entity import Entity
from feast.feature_view import FeatureView
from feast.feature_view import DUMMY_ENTITY_FIELD, FeatureView
from feast.types import Array, Bool, Bytes, Float64, Int32, Int64, String, UnixTimestamp
from feast.utils import _utc_now
from tests.data.data_creator import create_basic_driver_dataset
Expand Down Expand Up @@ -189,7 +189,7 @@ def test_snowflake_materialization_consistency_internal_with_lists(
snowflake_environment.data_source_creator.teardown()


@pytest.mark.integration
# @pytest.mark.integration
def test_snowflake_materialization_entityless_fv():
snowflake_config = IntegrationTestRepoConfig(
online_store=SNOWFLAKE_ONLINE_CONFIG,
Expand Down Expand Up @@ -225,7 +225,7 @@ def test_snowflake_materialization_entityless_fv():

try:
fs.apply([overall_stats_fv, driver])
assert overall_stats_fv.entity_columns != []
assert overall_stats_fv.entity_columns == [DUMMY_ENTITY_FIELD]

# materialization is run in two steps and
# we use timestamp from generated dataframe as a split point
Expand Down

Back | FazBrowse Home | New Git URL