Skip to content

Fix solver failure issue in mpccbf test files (#10) #6

Fix solver failure issue in mpccbf test files (#10)

Fix solver failure issue in mpccbf test files (#10) #6

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.6']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install package
run:
pip install -e .
- name: Test mpc/pid controller wit pytest
run:
pytest tests/auto_control_test.py --doctest-modules
- name: Test mpc-cbf controller wit pytest
run:
pytest tests/auto_mpccbf_test.py --doctest-modules
- name: Test racing game controller wit pytest
run:
pytest tests/auto_racing_game_test.py --doctest-modules