From 367a49cae4c60642e16cf6196fdbebc5a453620d Mon Sep 17 00:00:00 2001 From: Sheri Gilley Date: Wed, 22 May 2024 10:06:50 -0500 Subject: [PATCH] fix names in featurestore jobs --- .../automation-test/featurestore_cli_job.py | 6 +++--- .../automation-test/featurestore_sdk_job.py | 14 +++++++++----- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/sdk/python/featurestore_sample/automation-test/featurestore_cli_job.py b/sdk/python/featurestore_sample/automation-test/featurestore_cli_job.py index 474b80e024..6ac5df880d 100644 --- a/sdk/python/featurestore_sample/automation-test/featurestore_cli_job.py +++ b/sdk/python/featurestore_sample/automation-test/featurestore_cli_job.py @@ -10,7 +10,7 @@ print("=======Test CLI Notebook 1============") with open( - "notebooks/sdk_and_cli/1. Develop a feature set and register with managed feature store.py" + "notebooks/sdk_and_cli/1.Develop-feature-set-and-register.ipynb" ) as f: exec(f.read()) @@ -22,12 +22,12 @@ print("=======Test CLI Notebook 2============") with open( - "notebooks/sdk_and_cli/2. Experiment and train models using features.py" + "notebooks/sdk_and_cli/2.Experiment-train-models-using-features.ipynb" ) as f: exec(f.read()) print("=======Test CLI Notebook 3============") with open( - "notebooks/sdk_and_cli/3. Enable recurrent materialization and run batch inference.py" + "notebooks/sdk_and_cli/3.Enable-recurrent-materialization-run-batch-inference.ipynb" ) as f: exec(f.read()) diff --git a/sdk/python/featurestore_sample/automation-test/featurestore_sdk_job.py b/sdk/python/featurestore_sample/automation-test/featurestore_sdk_job.py index c12515fb71..c3ebe376b5 100644 --- a/sdk/python/featurestore_sample/automation-test/featurestore_sdk_job.py +++ b/sdk/python/featurestore_sample/automation-test/featurestore_sdk_job.py @@ -10,26 +10,30 @@ print("=======Test Notebook 1============") with open( - "notebooks/sdk_only/1. Develop a feature set and register with managed feature store.py" + "notebooks/sdk_only/1.Develop-feature-set-and-register.ipynb" ) as f: exec(f.read()) print("=======Test Notebook 2============") -with open("notebooks/sdk_only/2. Experiment and train models using features.py") as f: +with open("notebooks/sdk_only/2.Experiment-train-models-using-features.ipynb") as f: exec(f.read()) print("=======Test Notebook 3============") with open( - "notebooks/sdk_only/3. Enable recurrent materialization and run batch inference.py" + "notebooks/sdk_only/3.Enable-recurrent-materialization-run-batch-inference.ipynb" ) as f: exec(f.read()) print("=======Test Notebook 4============") -with open("notebooks/sdk_only/4. Enable online store and run online inference.py") as f: +with open("notebooks/sdk_only/4.Enable-online-store-run-inference.ipynb") as f: exec(f.read()) print("=======Test Notebook 5============") -with open("notebooks/sdk_only/5. Develop a feature set with custom source.py") as f: +with open("notebooks/sdk_only/5.Develop-feature-set-custom-source.ipynb") as f: + exec(f.read()) + +print("=======Test Notebook 7============") +with open("notebooks/sdk_only/7.Develop-feature-set-domain-specific-language-dsl.ipynb") as f: exec(f.read()) print("=======Clean up==========")