From 12af67066d537ad93c6eff4dce86934c21fbd26e Mon Sep 17 00:00:00 2001 From: Simon Alibert Date: Tue, 5 Mar 2024 16:26:31 +0100 Subject: [PATCH] Fix --- .github/workflows/test.yml | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0781a0ec..6e5dcdc5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -68,24 +68,25 @@ jobs: #---------------------------------------------- # run tests #---------------------------------------------- - - name: Activate venv + - name: Test train pusht end-to-end run: | source .venv/bin/activate - - name: Test train pusht end-to-end - run: python lerobot/scripts/train.py \ - hydra.job.name=pusht \ - env=pusht \ - wandb.enable=False \ - offline_steps=1 \ - online_steps=1 \ - device=cpu - # - name: Test eval pusht - # run: python lerobot/scripts/eval.py - # hydra.job.name=pusht \ - # env=pusht \ - # wandb.enable=False \ - # eval_episodes=1 \ - # device=cpu + python lerobot/scripts/train.py \ + hydra.job.name=pusht \ + env=pusht \ + wandb.enable=False \ + offline_steps=1 \ + online_steps=1 \ + device=cpu + # - name: Test eval pusht end-to-end + # run: | + # source .venv/bin/activate + # python lerobot/scripts/eval.py + # hydra.job.name=pusht \ + # env=pusht \ + # wandb.enable=False \ + # eval_episodes=1 \ + # device=cpu #---------------------------------------------- # cleanup #----------------------------------------------