Skip to content

Commit

Permalink
Bugfix: fixing CICD behave test (#1290)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadnazeri committed Jan 25, 2024
1 parent 4f7a2da commit dbd3354
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions client/src/featureform/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ class ResourceType(Enum):
# ResourceType is an enumeration representing the possible types of
# resources that may be registered with Featureform. Each value is based
# on OfflineResourceType in providers/offline.go

NO_TYPE = 0
LABEL = 1
FEATURE = 2
Expand Down
6 changes: 3 additions & 3 deletions tests/end_to_end/features/steps/serving.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ def step_impl(context):
]
context.iter = context.client.batch_features(
[
("transaction_feature", context.variant),
("balance_feature", context.variant),
("perc_feature", context.variant),
("transaction_feature", ff.get_run()),
("balance_feature", ff.get_run()),
("perc_feature", ff.get_run()),
]
)

Expand Down

0 comments on commit dbd3354

Please sign in to comment.