From da1888a378f2fce3266dcaa733e3c56980eea595 Mon Sep 17 00:00:00 2001 From: Remi Cadene Date: Fri, 27 Sep 2024 14:59:17 +0200 Subject: [PATCH] revert to all tests --- .github/workflows/test.yml | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a123eb65..f7090c59 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,37 +54,12 @@ jobs: - name: Test with pytest run: | - pytest tests/test_motors.py -v --cov=./lerobot --durations=0 \ + pytest tests -v --cov=./lerobot --durations=0 \ -W ignore::DeprecationWarning:imageio_ffmpeg._utils:7 \ -W ignore::UserWarning:torch.utils.data.dataloader:558 \ -W ignore::UserWarning:gymnasium.utils.env_checker:247 \ && rm -rf tests/outputs outputs - - name: Test with pytest - run: | - pytest tests/test_cameras.py -v --cov=./lerobot --durations=0 \ - -W ignore::DeprecationWarning:imageio_ffmpeg._utils:7 \ - -W ignore::UserWarning:torch.utils.data.dataloader:558 \ - -W ignore::UserWarning:gymnasium.utils.env_checker:247 \ - && rm -rf tests/outputs outputs - - - name: Test with pytest - run: | - pytest tests/test_robots.py -v --cov=./lerobot --durations=0 \ - -W ignore::DeprecationWarning:imageio_ffmpeg._utils:7 \ - -W ignore::UserWarning:torch.utils.data.dataloader:558 \ - -W ignore::UserWarning:gymnasium.utils.env_checker:247 \ - && rm -rf tests/outputs outputs - - - name: Test with pytest - run: | - pytest tests/test_control_robot.py -v --cov=./lerobot --durations=0 \ - -W ignore::DeprecationWarning:imageio_ffmpeg._utils:7 \ - -W ignore::UserWarning:torch.utils.data.dataloader:558 \ - -W ignore::UserWarning:gymnasium.utils.env_checker:247 \ - && rm -rf tests/outputs outputs - - pytest-minimal: name: Pytest (minimal install) runs-on: ubuntu-latest