Skip to content

Provides an issue template #1869

Provides an issue template

Provides an issue template #1869

Workflow file for this run

name: Pytest
on: [pull_request]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
with:
lfs: "true"
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"
- name: Install system dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y libportaudio2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run tests
run: |
pytest -vv -m 'not audio and not video and not audio_gstreamer and not video_gstreamer and not wireless and not wireless_gstreamer' --tb=short
env:
MUJOCO_GL: disable