mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
![]() * wip * Draft * Use bytest for node id * remove stray helm change * fix autoscaler init arg * don't forget to instantiate new load metrics dict * remove extraneous diff * Timeout, comments, function signature. * typo * another comment * tweak * docstring * shorter timeout * Use a better error code * missing self * Dedent example * Add drain node prometheus metric. * comment * Update tests part 1: test_autoscaler.py * Update tests part 2: test_resource_demand_scheduler * lint * Update tests part 3: test_autoscaling_policy * Unit tests for new Prometheus metric and DrainNode error handling. * comment * removed unused function * Try adding ability to mock out process termination to fake node provider * Add integration test. * fix * fix * lint * Improve log message * fix * Simplify test * Fix doc example * remove unused dict * Mock out process termination in a subclass * Add add doc string and comment explaining prune active ips. * Comment: wtf is use_node_id_as_ip * one more comment * more explanation * period * tweak |
||
---|---|---|
.. | ||
_build | ||
azure | ||
examples | ||
kubernetes | ||
site | ||
source | ||
tools | ||
yarn | ||
.gitignore | ||
BUILD | ||
make.bat | ||
Makefile | ||
README.md | ||
requirements-doc.txt | ||
requirements-rtd.txt |
Ray Documentation
To compile the documentation, run the following commands from this directory. Note that Ray must be installed first.
pip install -r requirements-doc.txt
pip install -U -r requirements-rtd.txt # important for reproducing the deployment environment
make html
open _build/html/index.html
To test if there are any build errors with the documentation, do the following.
sphinx-build -b html -d _build/doctrees source _build/html
To check if there are broken links, run the following (we are currently not running this in the CI since there are false positives).
make linkcheck