Skip to content

Migration to gymnasium 1.0 #381

Migration to gymnasium 1.0

Migration to gymnasium 1.0 #381

Workflow file for this run

name: Python tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linux-test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pytest
pip install moviepy
pip install "mujoco==2.3.3"
sudo apt-get install libgmp-dev
pip install imageio
pip install -e .[all]
- name: Full Python tests
run: |
pytest tests/test_algos.py
pytest tests/test_pruning.py