Merge pull request #159 from nasa/bugs/158-keras-version-workers #300
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Tests | |
on: | |
push: | |
pull_request: | |
paths: | |
- prog_models | |
jobs: | |
test_base_models: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_base_models | |
test_battery: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_battery | |
test_calc_error: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_calc_error | |
test_centrifugal_pump: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_centrifugal_pump | |
test_composite: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_composite | |
test_data_model: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_data_model | |
test_datasets: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: | | |
pip install --upgrade --upgrade-strategy eager -e . | |
pip install requests | |
- name: Run tests | |
run: python -m tests.test_datasets | |
test_dict_like_matrix_wrapper: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_dict_like_matrix_wrapper | |
test_direct: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_direct | |
test_ensemble: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_ensemble | |
test_estimate_params: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_estimate_params | |
# test_examples: | |
# timeout-minutes: 25 | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Set up Python | |
# uses: actions/setup-python@v4 | |
# with: | |
# python-version: '3.7' | |
# - name: Install dependencies cache | |
# uses: actions/cache@v2 | |
# with: | |
# path: ~/.cache/pip | |
# key: pip-cache | |
# - name: Update | |
# run: pip install --upgrade --upgrade-strategy eager -e . | |
# - name: Run tests | |
# run: python -m tests.test_examples | |
test_horizon: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_horizon | |
test_linear_model: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_linear_model | |
test_loading: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_loading | |
test_moe: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_moe | |
test_pneumatic_valve: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_pneumatic_valve | |
test_powertrain: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_powertrain | |
test_predictors: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_predictors | |
test_serialization: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_serialization | |
test_sim_result: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_sim_result | |
test_state_estimators: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_state_estimators | |
test_surrogates: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_surrogates | |
test_tutorials: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: | | |
pip install --upgrade --upgrade-strategy eager -e . | |
pip install notebook | |
pip install testbook | |
- name: Run tests | |
run: python -m tests.test_tutorials | |
test_uav_model: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_uav_model | |
test_uncertain_data: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache | |
- name: Update | |
run: pip install --upgrade --upgrade-strategy eager -e . | |
- name: Run tests | |
run: python -m tests.test_uncertain_data | |
copyright: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.9'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run copyright check | |
run: | | |
python scripts/test_copyright.py |