Remove end-to-end tests

This commit is contained in:
Simon Alibert 2024-11-03 18:28:54 +01:00
parent c2d6fb6119
commit f6c90ca35f
1 changed files with 32 additions and 32 deletions

View File

@ -103,40 +103,40 @@ jobs:
-W ignore::UserWarning:gymnasium.utils.env_checker:247 \ -W ignore::UserWarning:gymnasium.utils.env_checker:247 \
&& rm -rf tests/outputs outputs && rm -rf tests/outputs outputs
# TODO(aliberts, rcadene): redesign after v2 migration / removing hydra
# end-to-end:
# name: End-to-end
# runs-on: ubuntu-latest
# env:
# DATA_DIR: tests/data
# MUJOCO_GL: egl
# steps:
# - uses: actions/checkout@v4
# with:
# lfs: true # Ensure LFS files are pulled
end-to-end: # - name: Install apt dependencies
name: End-to-end # # portaudio19-dev is needed to install pyaudio
runs-on: ubuntu-latest # run: |
env: # sudo apt-get update && \
DATA_DIR: tests/data # sudo apt-get install -y libegl1-mesa-dev portaudio19-dev
MUJOCO_GL: egl
steps:
- uses: actions/checkout@v4
with:
lfs: true # Ensure LFS files are pulled
- name: Install apt dependencies # - name: Install poetry
# portaudio19-dev is needed to install pyaudio # run: |
run: | # pipx install poetry && poetry config virtualenvs.in-project true
sudo apt-get update && \ # echo "${{ github.workspace }}/.venv/bin" >> $GITHUB_PATH
sudo apt-get install -y libegl1-mesa-dev portaudio19-dev
- name: Install poetry # - name: Set up Python 3.10
run: | # uses: actions/setup-python@v5
pipx install poetry && poetry config virtualenvs.in-project true # with:
echo "${{ github.workspace }}/.venv/bin" >> $GITHUB_PATH # python-version: "3.10"
# cache: "poetry"
- name: Set up Python 3.10 # - name: Install poetry dependencies
uses: actions/setup-python@v5 # run: |
with: # poetry install --all-extras
python-version: "3.10"
cache: "poetry"
- name: Install poetry dependencies # - name: Test end-to-end
run: | # run: |
poetry install --all-extras # make test-end-to-end \
# && rm -rf outputs
- name: Test end-to-end
run: |
make test-end-to-end \
&& rm -rf outputs