This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
Bump version to 0.5.0
and update Ray Tune lower bound to 2.7.1
#258
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Development | |
on: [push, pull_request] | |
jobs: | |
test_linux_ray_master: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -U pytest | |
python -m pip install codecov | |
python -m pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp37-cp37m-manylinux2014_x86_64.whl | |
python -m pip install -U -q scikit-learn scikit-optimize hyperopt hpbandster ConfigSpace scipy dataclasses optuna keras | |
if [ -f requirements-test.txt ]; then python -m pip install -r requirements-test.txt; fi | |
- name: Install package | |
run: | | |
python -m pip install -e . | |
- name: Test with pytest | |
run: | | |
export SKLEARN_N_JOBS=1 | |
cd tests | |
python -m pytest -v --durations=0 -x test_randomizedsearch.py | |
python -m pytest -v --durations=0 -x test_gridsearch.py | |
python -m pytest -v --durations=0 -x test_trainable.py | |
declare -a arr=("AsyncHyperBandScheduler" "HyperBandScheduler" "MedianStoppingRule" "ASHAScheduler"); for s in "${arr[@]}"; do python schedulers.py --scheduler "$s"; done | |
chmod +x ./run_examples.sh | |
bash ./run_examples.sh | |
test_linux_ray_release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -U pytest | |
python -m pip install codecov | |
python -m pip install -U ray | |
python -m pip install -U -q scikit-learn scikit-optimize hyperopt hpbandster ConfigSpace scipy dataclasses optuna keras | |
if [ -f requirements-test.txt ]; then python -m pip install -r requirements-test.txt; fi | |
- name: Install package | |
run: | | |
python -m pip install -e . | |
- name: Test with pytest | |
run: | | |
export SKLEARN_N_JOBS=1 | |
cd tests | |
python -m pytest -v --durations=0 -x test_randomizedsearch.py | |
python -m pytest -v --durations=0 -x test_gridsearch.py | |
python -m pytest -v --durations=0 -x test_trainable.py | |
declare -a arr=("AsyncHyperBandScheduler" "HyperBandScheduler" "MedianStoppingRule" "ASHAScheduler"); for s in "${arr[@]}"; do python schedulers.py --scheduler "$s"; done | |
chmod +x ./run_examples.sh | |
bash ./run_examples.sh | |
test_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
export LINT=1 PYTHONWARNINGS=ignore | |
python -m pip install --upgrade pip | |
python -m pip install yapf==0.23.0 flake8==3.7.7 flake8-comprehensions flake8-quotes==2.0.0 | |
- name: Lint codebase | |
run: | | |
chmod +x ./tests/format.sh | |
bash ./tests/format.sh |