ray/release/long_running_tests/app_config.yaml
Amog Kamsetty 18dcf1ac25
[Release] Use nightly Docker images (#20001)
* use nightly

* switch ml cpu to ray cpu

* fix

* add pytest

* add more pytest

* add constraint

* add tensorflow

* fix merge conflict

* add tblib

* fix

* add back uninstall
2021-11-10 18:00:16 -08:00

23 lines
745 B
YAML
Executable file

base_image: "anyscale/ray:nightly-py37"
env_vars: {}
debian_packages:
- curl
- unzip
python:
pip_packages:
- gym[atari]
- pytest
- tensorflow
conda_packages: []
post_build_cmds:
- 'rm -r wrk || true && git clone https://github.com/wg/wrk.git /tmp/wrk && cd /tmp/wrk && make -j && sudo cp wrk /usr/local/bin'
- pip uninstall -y numpy ray || true
- sudo rm -rf /home/ray/anaconda3/lib/python3.7/site-packages/numpy
- pip3 install numpy || true
- pip3 install pytest || true
- pip3 install -U ray[all] gym[atari] autorom[accept-rom-license]
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
- pip3 install ray[all]
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}