Skip to content

Commit

Permalink
Integration test env changed (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatajagannath authored Jun 25, 2024
1 parent 9993939 commit e820a85
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ submit_anyscale_job = SubmitAnyscaleJob(
task_id="submit_anyscale_job",
conn_id=ANYSCALE_CONN_ID,
name="AstroJob",
image_uri="anyscale/ray:2.23.0-py311",
compute_config="my-compute-config:1",
image_uri="anyscale/image/airflow-integration-testing:1",
compute_config="airflow-integration-testing:1",
working_dir=str(FOLDER_PATH),
entrypoint="python ray-job.py",
requirements=["requests", "pandas", "numpy", "torch"],
Expand Down Expand Up @@ -147,8 +147,8 @@ deploy_anyscale_service = RolloutAnyscaleService(
task_id="rollout_anyscale_service",
conn_id=ANYSCALE_CONN_ID,
name=SERVICE_NAME,
image_uri="anyscale/ray:2.23.0-py311",
compute_config="my-compute-config:1",
image_uri="anyscale/image/airflow-integration-testing:1",
compute_config="airflow-integration-testing:1",
working_dir="https://github.com/anyscale/docs_examples/archive/refs/heads/main.zip",
applications=[{"import_path": "sentiment_analysis.app:model"}],
requirements=["transformers", "requests", "pandas", "numpy", "torch"],
Expand Down
4 changes: 2 additions & 2 deletions example_dags/anyscale_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
task_id="submit_anyscale_job",
conn_id=ANYSCALE_CONN_ID,
name="AstroJob",
image_uri="anyscale/ray:2.23.0-py311",
compute_config="my-compute-config:1",
image_uri="anyscale/image/airflow-integration-testing:1",
compute_config="airflow-integration-testing:1",
working_dir=str(FOLDER_PATH),
entrypoint="python ray-job.py",
requirements=["requests", "pandas", "numpy", "torch"],
Expand Down
4 changes: 2 additions & 2 deletions example_dags/anyscale_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
task_id="rollout_anyscale_service",
conn_id=ANYSCALE_CONN_ID,
name=SERVICE_NAME,
image_uri="anyscale/ray:2.23.0-py311",
compute_config="my-compute-config:1",
image_uri="anyscale/image/airflow-integration-testing:1",
compute_config="airflow-integration-testing:1",
working_dir="https://github.com/anyscale/docs_examples/archive/refs/heads/main.zip",
applications=[{"import_path": "sentiment_analysis.app:model"}],
requirements=["transformers", "requests", "pandas", "numpy", "torch"],
Expand Down

0 comments on commit e820a85

Please sign in to comment.