Skip to content
Merged
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
31 changes: 31 additions & 0 deletions .github/workflows/pr_duckdb_integration_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: pr-duckdb-integration-tests

on:
pull_request:
types:
- opened
- synchronize
- labeled

jobs:
integration-test-duckdb-offline:
if:
((github.event.action == 'labeled' && (github.event.label.name == 'approved' || github.event.label.name == 'lgtm' || github.event.label.name == 'ok-to-test')) ||
(github.event.action != 'labeled' && (contains(github.event.pull_request.labels.*.name, 'ok-to-test') || contains(github.event.pull_request.labels.*.name, 'approved') || contains(github.event.pull_request.labels.*.name, 'lgtm')))) &&
github.event.pull_request.base.repo.full_name == 'feast-dev/feast'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.event.repository.full_name }}
ref: ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.63.1
environments: duckdb-tests
cache: true
- name: Run DuckDB offline store integration tests
run: make test-python-universal-duckdb-offline
31 changes: 31 additions & 0 deletions .github/workflows/pr_ray_integration_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: pr-ray-integration-tests

on:
pull_request:
types:
- opened
- synchronize
- labeled

jobs:
integration-test-ray-offline:
if:
((github.event.action == 'labeled' && (github.event.label.name == 'approved' || github.event.label.name == 'lgtm' || github.event.label.name == 'ok-to-test')) ||
(github.event.action != 'labeled' && (contains(github.event.pull_request.labels.*.name, 'ok-to-test') || contains(github.event.pull_request.labels.*.name, 'approved') || contains(github.event.pull_request.labels.*.name, 'lgtm')))) &&
github.event.pull_request.base.repo.full_name == 'feast-dev/feast'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.event.repository.full_name }}
ref: ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.63.1
environments: ray-tests
cache: true
- name: Run Ray offline store integration tests
run: make test-python-universal-ray-offline
10 changes: 5 additions & 5 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -1317,14 +1317,14 @@
"filename": "sdk/python/tests/integration/feature_repos/repo_configuration.py",
"hashed_secret": "d90e76ef629fb00c95f4e84fec29fbda111e2392",
"is_verified": false,
"line_number": 457
"line_number": 461
},
{
"type": "Secret Keyword",
"filename": "sdk/python/tests/integration/feature_repos/repo_configuration.py",
"hashed_secret": "5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8",
"is_verified": false,
"line_number": 459
"line_number": 463
}
],
"sdk/python/tests/integration/feature_repos/universal/data_sources/file.py": [
Expand All @@ -1333,14 +1333,14 @@
"filename": "sdk/python/tests/integration/feature_repos/universal/data_sources/file.py",
"hashed_secret": "d70eab08607a4d05faa2d0d6647206599e9abc65",
"is_verified": false,
"line_number": 258
"line_number": 257
},
{
"type": "Secret Keyword",
"filename": "sdk/python/tests/integration/feature_repos/universal/data_sources/file.py",
"hashed_secret": "d70eab08607a4d05faa2d0d6647206599e9abc65",
"is_verified": false,
"line_number": 258
"line_number": 257
}
],
"sdk/python/tests/integration/feature_repos/universal/online_store/couchbase.py": [
Expand Down Expand Up @@ -1539,5 +1539,5 @@
}
]
},
"generated_at": "2026-03-01T00:58:44Z"
"generated_at": "2026-03-01T19:07:31Z"
}
20 changes: 4 additions & 16 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ test-python-integration-dbt: ## Run dbt integration tests
python -m pytest tests/integration/dbt/test_dbt_integration.py -v --tb=short
@echo "✓ dbt integration tests completed successfully!"

test-python-universal-duckdb-offline: ## Run Python DuckDB offline store integration tests
pixi run -e duckdb-tests test

test-python-universal-spark: ## Run Python Spark integration tests
PYTHONPATH='.' \
FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.offline_stores.contrib.spark_repo_configuration \
Expand Down Expand Up @@ -392,22 +395,7 @@ test-python-universal-postgres-offline: ## Run Python Postgres integration tests
sdk/python/tests

test-python-universal-ray-offline: ## Run Python Ray offline store integration tests
PYTHONPATH='.' \
FULL_REPO_CONFIGS_MODULE=sdk.python.feast.infra.offline_stores.contrib.ray_repo_configuration \
PYTEST_PLUGINS=sdk.python.feast.infra.offline_stores.contrib.ray_offline_store.tests \
python -m pytest -n 8 --integration \
-m "not universal_online_stores and not benchmark" \
-k "not test_historical_retrieval_with_validation and \
not test_universal_cli and \
not test_go_feature_server and \
not test_feature_logging and \
not test_logged_features_validation and \
not test_lambda_materialization_consistency and \
not gcs_registry and \
not s3_registry and \
not test_snowflake and \
not test_spark" \
sdk/python/tests
pixi run -e ray-tests test

test-python-ray-compute-engine: ## Run Python Ray compute engine tests
PYTHONPATH='.' \
Expand Down
Loading
Loading