Skip to content
Open
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
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,7 @@ benchmark-python-local: ## Run integration + benchmark tests for Python (local d

test-python-unit: ## Run Python unit tests (use pattern=<pattern> to filter tests, e.g., pattern=milvus, pattern=test_online_retrieval.py, pattern=test_online_retrieval.py::test_get_online_features_milvus)
uv run python -m pytest -n 8 --color=yes $(if $(pattern),-k "$(pattern)") \
--ignore=sdk/python/tests/component/ray \
--ignore=sdk/python/tests/component/spark \
sdk/python/tests
sdk/python/tests/unit
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test_hybrid_online_store.py and test_mcp_feature_server.py needs integration marker, else won;t run in CI now


# Fast unit tests only
test-python-unit-fast: ## Run fast unit tests only (no external dependencies)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@
import traceback
import unittest

import pytest

import feast
from feast.utils import _utc_now

pytestmark = pytest.mark.integration

FILES_TO_IGNORE = {"app"}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
from tests.utils.cli_repo_creator import CliRunner, get_example_repo
from tests.utils.feature_records import validate_online_features

pytestmark = pytest.mark.integration


@pytest.mark.skipif(
platform.system() == "Darwin" and os.environ.get("CI") == "true",
Expand Down
Loading
Loading