forked from agimus-project/happypose
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (34 loc) · 1.38 KB
/
poetry-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
name: Tests with poetry
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install EGL mesa - required for Panda3D renderer
run: sudo apt-get update && sudo apt-get install -qqy libegl1-mesa libegl1-mesa-dev rclone
- name: Setup poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install happypose
run: poetry install --with dev -E render -E cpu
- name: Download pre-trained models required for tests
run: |
mkdir local_data
poetry run python -m happypose.toolbox.utils.download --cosypose_model=detector-bop-ycbv-pbr--970850
poetry run python -m happypose.toolbox.utils.download --cosypose_model=coarse-bop-ycbv-pbr--724183
poetry run python -m happypose.toolbox.utils.download --cosypose_model=refiner-bop-ycbv-pbr--604090
poetry run python -m happypose.toolbox.utils.download --megapose_models
cd tests/data
git clone https://github.com/petrikvladimir/happypose_test_data.git crackers_example
- name: Run tests
run: |
poetry run python -m unittest