Skip to content

Adding scripts for testing full exports #32

Adding scripts for testing full exports

Adding scripts for testing full exports #32

Workflow file for this run

name: Repository Tests
on:
push:
jobs:
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Cache pip dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test_requirements.txt
pip install gymnasium
pip install -e .
- name: Run tests
run: python -m pytest --ignore=tests/scripts