-
Notifications
You must be signed in to change notification settings - Fork 10
74 lines (65 loc) · 2.22 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
name: Tests & Coverage
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install EGL mesa - required for Panda3D renderer
run: |
sudo apt-get update -y -qq
sudo apt-get install -y -qq libegl1-mesa libegl1-mesa-dev
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: happypose
python-version: ${{ matrix.python-version }}
miniforge-variant: Mambaforge
miniforge-version: latest
use-mamba: true
- name: Get date for caching, reset cache every day
id: get-date
run: echo "::set-output name=today::$(/bin/date -u '+%Y%m%d')"
shell: bash
- name: Caching of the happypose installation
uses: actions/cache@v3
with:
path: ${{ env.CONDA }}/envs
key:
conda-${{ runner.os }}--${{ runner.arch }}--${{steps.get-date.outputs.today }}-${{hashFiles('environment.yml') }}-${{env.CACHE_NUMBER }}
env:
# Increase this value to reset cache manually
CACHE_NUMBER: 0
id: cache
- name: Update conda environment with happypose dependencies
run:
mamba env update -n happypose -f environment.yml
if: steps.cache.outputs.cache-hit != 'true'
- name: Install bop toolkit (temporal fix)
run: |
cd happypose/pose_estimators/megapose/deps/bop_toolkit_challenge/
sed 's/==.*$//' requirements.txt > req_nover.txt
pip install -r req_nover.txt -e .
if: steps.cache.outputs.cache-hit != 'true'
- name: Install happypose
run: |
cd happypose/pose_estimators/cosypose
pip install .
cd ../../..
pip install -e .
- name: Run tests
run: |
pip install pytest coverage
coverage run --source=happypose -m pytest tests
coverage xml
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}