File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 25
25
import pytest
26
26
from _pytest .nodes import Item
27
27
28
+ os .environ ["FEAST_USAGE" ] = "False"
29
+ os .environ ["IS_TEST" ] = "True"
28
30
from feast import FeatureStore
29
31
from feast .wait import wait_retry_backoff
30
32
from tests .data .data_creator import create_basic_driver_dataset
@@ -218,8 +220,6 @@ def pytest_generate_tests(metafunc: pytest.Metafunc):
218
220
In order for pytest to group tests together (and share environment fixture)
219
221
parameter should point to the same Python object (hence, we use _config_cache dict to store those objects).
220
222
"""
221
- os .environ ["FEAST_USAGE" ] = "False"
222
- os .environ ["IS_TEST" ] = "True"
223
223
if "environment" in metafunc .fixturenames :
224
224
markers = {m .name : m for m in metafunc .definition .own_markers }
225
225
offline_stores = None
You can’t perform that action at this time.
0 commit comments