Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix RAI image builds #3627

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ extra_config: environment.yaml
test:
pytest:
enabled: true
pip_requirements: tests/requirements.txt
conda_environment: tests/test_conda_env.yaml
tests_dir: tests
categories: ["Responsible AI"]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
azure-ai-ml~=1.0.0
azure.identity==1.10.0
azureml-core~=1.53.0
azure-ai-ml==1.22.4
azure.identity==1.19.0
azureml-core>=1.58.0
azureml-mlflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
channels:
- conda-forge
- defaults
- anaconda
dependencies:
- python=3.12.0
- pip
- pip:
- -r requirements.txt
## Test requirements
- pytest
- tqdm
- azure-core
name: rai_test
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ spec: spec.yaml
extra_config: environment.yaml
test:
pytest:
enabled: true
pip_requirements: tests/requirements.txt
enabled: true
conda_environment: tests/test_conda_env.yaml
tests_dir: tests
categories: ["Responsible AI"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
channels:
- conda-forge
- defaults
- anaconda
dependencies:
- python=3.12.0
- pip
- pip:
- -r requirements.txt
## Test requirements
- pytest
- tqdm
- azure-core
name: rai_test
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ extra_config: environment.yaml
test:
pytest:
enabled: true
pip_requirements: tests/requirements.txt
conda_environment: tests/test_conda_env.yaml
tests_dir: tests
categories: ["Responsible AI"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
channels:
- conda-forge
- defaults
- anaconda
dependencies:
- python=3.12.0
- pip
- pip:
- -r requirements.txt
## Test requirements
- pytest
- tqdm
- azure-core
name: rai_test
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_azure_ai_ml_automl():
subscription_id = os.environ.get("subscription_id")
resource_group = os.environ.get("resource_group")
workspace_name = os.environ.get("workspace")

# test
ml_client = MLClient(
AzureCliCredential(), subscription_id, resource_group, workspace_name
)
Expand Down
Loading