-
Notifications
You must be signed in to change notification settings - Fork 888
217 lines (194 loc) · 7.08 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
name: Tests
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened, labeled]
push:
branches:
- main
jobs:
tests:
if: |
${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'CI') }} ||
${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
env:
POETRY_VERSION: 1.8.2
DATA_DIR: tests/data
MUJOCO_GL: egl
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v4
with:
lfs: true
- name: Set up python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Add SSH key for installing envs
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
#----------------------------------------------
# install & configure poetry
#----------------------------------------------
- name: Load cached Poetry installation
id: restore-poetry-cache
uses: actions/cache/restore@v3
with:
path: ~/.local
key: poetry-${{ env.POETRY_VERSION }}
- name: Install Poetry
if: steps.restore-poetry-cache.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: true
installer-parallel: true
- name: Save cached Poetry installation
if: |
steps.restore-poetry-cache.outputs.cache-hit != 'true' &&
github.ref_name == 'main'
id: save-poetry-cache
uses: actions/cache/save@v3
with:
path: ~/.local
key: poetry-${{ env.POETRY_VERSION }}
- name: Configure Poetry
run: poetry config virtualenvs.in-project true
#----------------------------------------------
# install dependencies
#----------------------------------------------
# TODO(aliberts): move to gpu runners
- name: Select cpu dependencies # HACK
run: cp -t . .github/poetry/cpu/pyproject.toml .github/poetry/cpu/poetry.lock
- name: Load cached venv
id: restore-dependencies-cache
uses: actions/cache/restore@v3
with:
path: .venv
key: venv-${{ steps.setup-python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.restore-dependencies-cache.outputs.cache-hit != 'true'
env:
TMPDIR: ~/tmp
TEMP: ~/tmp
TMP: ~/tmp
run: |
mkdir ~/tmp
poetry install --no-interaction --no-root --all-extras
- name: Save cached venv
if: |
steps.restore-dependencies-cache.outputs.cache-hit != 'true' &&
github.ref_name == 'main'
id: save-dependencies-cache
uses: actions/cache/save@v3
with:
path: .venv
key: venv-${{ steps.setup-python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ hashFiles('**/poetry.lock') }}
- name: Install libegl1-mesa-dev (to use MUJOCO_GL=egl)
run: sudo apt-get update && sudo apt-get install -y libegl1-mesa-dev
#----------------------------------------------
# install project
#----------------------------------------------
- name: Install project
run: poetry install --no-interaction --all-extras
#----------------------------------------------
# run tests & coverage
#----------------------------------------------
- name: Run tests
run: |
source .venv/bin/activate
pytest -v --cov=./lerobot --cov-report=xml tests
# TODO(aliberts): Link with HF Codecov account
# - name: Upload coverage reports to Codecov with GitHub Action
# uses: codecov/codecov-action@v4
# with:
# files: ./coverage.xml
# verbose: true
#----------------------------------------------
# run end-to-end tests
#----------------------------------------------
- name: Tests end-to-end
run: |
source .venv/bin/activate
make test-ete
# - name: Tests end-to-end
# run: |
# source .venv/bin/activate
# python lerobot/scripts/train.py \
# policy=act \
# env=aloha \
# wandb.enable=False \
# offline_steps=2 \
# online_steps=0 \
# eval_episodes=1 \
# device=cpu \
# save_model=true \
# save_freq=2 \
# policy.n_action_steps=20 \
# policy.chunk_size=20 \
# policy.batch_size=2 \
# hydra.run.dir=tests/outputs/act/
# - name: Test eval ACT on ALOHA end-to-end
# run: |
# source .venv/bin/activate
# python lerobot/scripts/eval.py \
# --config tests/outputs/act/.hydra/config.yaml \
# eval_episodes=1 \
# env.episode_length=8 \
# device=cpu \
# policy.pretrained_model_path=tests/outputs/act/models/2.pt
# - name: Test train Diffusion on PushT end-to-end
# run: |
# source .venv/bin/activate
# python lerobot/scripts/train.py \
# policy=diffusion \
# env=pusht \
# wandb.enable=False \
# offline_steps=2 \
# online_steps=0 \
# eval_episodes=1 \
# device=cpu \
# save_model=true \
# save_freq=2 \
# policy.batch_size=2 \
# hydra.run.dir=tests/outputs/diffusion/
# - name: Test eval Diffusion on PushT end-to-end
# run: |
# source .venv/bin/activate
# python lerobot/scripts/eval.py \
# --config tests/outputs/diffusion/.hydra/config.yaml \
# eval_episodes=1 \
# env.episode_length=8 \
# device=cpu \
# policy.pretrained_model_path=tests/outputs/diffusion/models/2.pt
# - name: Test train TDMPC on Simxarm end-to-end
# run: |
# source .venv/bin/activate
# python lerobot/scripts/train.py \
# policy=tdmpc \
# env=xarm \
# wandb.enable=False \
# offline_steps=1 \
# online_steps=1 \
# eval_episodes=1 \
# device=cpu \
# save_model=true \
# save_freq=2 \
# policy.batch_size=2 \
# hydra.run.dir=tests/outputs/tdmpc/
# - name: Test eval TDMPC on Simxarm end-to-end
# run: |
# source .venv/bin/activate
# python lerobot/scripts/eval.py \
# --config tests/outputs/tdmpc/.hydra/config.yaml \
# eval_episodes=1 \
# env.episode_length=8 \
# device=cpu \
# policy.pretrained_model_path=tests/outputs/tdmpc/models/2.pt