ray/release/tune_tests/cloud_tests/app_config.yaml

22 lines
624 B
YAML
Executable file

base_image: "anyscale/ray:1.7.0-py37"
env_vars: {}
debian_packages:
- curl
python:
pip_packages:
- pytest
- awscli
- gsutil
conda_packages: []
post_build_cmds:
# Needed for gsutil authentication
- printf "[GoogleCompute]\nservice_account = default\n" > /home/ray/.boto
# Make sure numpy is sane
- pip uninstall -y numpy ray || true
- sudo rm -rf /home/ray/anaconda3/lib/python3.7/site-packages/numpy
- pip3 install numpy || true
# Install Ray
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}