Skip to content

Commit bc50029

Browse files
committed
fix unit tests
1 parent 2b3ff5e commit bc50029

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/run-unittests-py38-cov-report.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ jobs:
7171
- name: "Install Forecasting dependencies"
7272
run: |
7373
pip install -e ".[forecast]"
74-
74+
- name: "Install featurestore marketplace dependencies"
75+
run: |
76+
pip install -e ".[feature-store-marketplace]
7577
- name: "Run unitary tests folder with maximum ADS dependencies"
7678
timeout-minutes: 40
7779
shell: bash

tests/unitary/with_extras/operator/test_common_backend_factory.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,11 @@ def setup_method(self):
6767
conda="example_v1",
6868
conda_type=PACK_TYPE.CUSTOM,
6969
path="/fake/path/to/operator",
70-
backends=[BACKEND_NAME.JOB.value, BACKEND_NAME.DATAFLOW.value],
70+
backends=[
71+
BACKEND_NAME.JOB.value,
72+
BACKEND_NAME.DATAFLOW.value,
73+
BACKEND_NAME.OPERATOR_LOCAL.value,
74+
],
7175
)
7276

7377
# mock operator config

0 commit comments

Comments
 (0)