Skip to content

Support PettingZoo Parallel API and action mask #604

Support PettingZoo Parallel API and action mask

Support PettingZoo Parallel API and action mask #604

Workflow file for this run

name: tests
on:
push:
branches:
- master
- sf2
pull_request:
branches:
- master
- sf2
jobs:
run-tests-ubuntu:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
os: ['ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda env & dependencies
run: |
conda install python=${{ matrix.python-version }}
pip install -e '.[atari, mujoco, envpool, pettingzoo]'
conda list
- name: Install test dependencies
run: |
pip install pytest
- name: Run Pre-check
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 5
command: pytest -s tests/test_precheck.py & pytest -s tests/algo/test_pbt.py
- name: Run tests
run: |
# run all tests
pytest -s -k "not torch_tensor_share"
run-tests-mac:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
os: ['macos-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
activate-environment: myenv
auto-activate-base: true
miniconda-version: "latest" # Ensure Miniconda is downloaded and installed
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda env & dependencies
run: |
conda install python=${{ matrix.python-version }}
pip install -e '.[atari, mujoco, pettingzoo]'
conda list
- name: Install test dependencies
run: |
pip install pytest
- name: Run Pre-check
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 5
command: pytest -s tests/test_precheck.py & pytest -s tests/algo/test_pbt.py
- name: Run tests
run: |
# run all tests
pytest -s -k "not torch_tensor_share"